:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f7f4ef;
  --bg-softer: #f3eee7;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-solid: #ffffff;
  --surface-muted: #f4eee6;
  --text: #10110f;
  --text-strong: #24231f;
  --text-soft: #6d675f;
  --line: #ded4c8;
  --line-strong: #d8c6b0;
  --dark: #090a09;
  --dark-soft: #0e1110;
  --dark-panel: #141614;
  --mint: #2ed8a3;
  --mint-strong: #20c997;
  --mint-soft: #8ff3d1;
  --bronze: #ce8946;
  --bronze-deep: #b87538;
  --bronze-light: #e0a15a;
  --bronze-soft: #f3d3aa;
  --bronze-dark: #7a4a24;
  --blue: #7fd6ff;
  --blue-strong: #34a6e8;
  --amber: #f6c285;
  --violet: #a896ff;
  --shadow-soft: 0 20px 60px rgba(10, 10, 9, 0.12);
  --shadow-card: 0 22px 58px rgba(10, 10, 9, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 10px;
  --radius-pill: 999px;
  --container: 1220px;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #f7f4ef 0%, #f3eee7 48%, #ffffff 100%);
  color: var(--text);
  font: 500 16px/1.65 "Manrope", system-ui, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  padding: 0;
}

img {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.page-aura {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.page-aura__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 17, 16, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 17, 16, 0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 82%);
}

.page-aura__blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.45;
}

.page-aura__blur--bronze {
  width: 28vw;
  height: 28vw;
  min-width: 260px;
  min-height: 260px;
  top: 4vh;
  left: -9vw;
  background: rgba(206, 137, 70, 0.22);
}

.page-aura__blur--blue {
  width: 24vw;
  height: 24vw;
  min-width: 240px;
  min-height: 240px;
  top: 18vh;
  right: -10vw;
  background: rgba(127, 214, 255, 0.18);
}

.page-aura__blur--amber {
  width: 20vw;
  height: 20vw;
  min-width: 220px;
  min-height: 220px;
  bottom: 14vh;
  right: 10vw;
  background: rgba(246, 194, 133, 0.14);
}

.skip-link {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 120;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background: var(--dark);
  color: #fff;
  transform: translateY(-140%);
  transition: transform 0.22s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  width: 100%;
  border-bottom: 1px solid rgba(206, 137, 70, 0.18);
  background: rgba(9, 10, 9, 0.94);
  backdrop-filter: blur(18px);
  transition: background-color 0.24s ease, border-color 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(9, 10, 9, 0.92);
  border-bottom-color: rgba(206, 137, 70, 0.2);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 66px;
  width: min(calc(100% - 48px), 1280px);
  margin: 0 auto;
  padding: 0 32px;
  transition: min-height 0.24s ease;
}

.site-header.is-scrolled .site-header__inner {
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand span {
  font-size: 20px;
  color: #f4efe7;
  transition: color 0.2s ease;
}

.brand:hover span {
  color: var(--bronze-soft);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 10px;
}

.nav-link,
.nav-link--button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  color: rgba(244, 239, 231, 0.68);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link--button:hover,
.nav-dropdown.is-open .nav-link--button {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.nav-link::after,
.nav-link--button::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1px;
  background: rgba(206, 137, 70, 0.92);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link--button:hover::after,
.nav-dropdown.is-open .nav-link--button::after {
  transform: scaleX(1);
}

.nav-link__caret {
  width: 8px;
  height: 8px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.products-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(420px, calc(100vw - 56px));
  padding: 12px;
  border: 1px solid rgba(216, 198, 176, 0.18);
  border-radius: 24px;
  background: rgba(17, 17, 16, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.products-menu[hidden] {
  display: none;
}

.products-menu__item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  transition: background-color 0.22s ease, transform 0.22s ease;
}

.products-menu__item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.products-menu__item strong {
  font-size: 15px;
  color: #f4efe7;
}

.products-menu__item span {
  color: rgba(207, 198, 184, 0.76);
  font-size: 13px;
  line-height: 1.5;
}

.products-menu__item--muted {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 6px;
  padding-top: 18px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: inline-flex;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.lang-switcher__btn {
  min-width: 0;
  padding: 0;
  border-radius: 0;
  color: rgba(244, 239, 231, 0.58);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.lang-switcher__btn.is-active {
  background: transparent;
  color: var(--bronze);
  box-shadow: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(180deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  color: #090a09;
  box-shadow: 0 16px 40px rgba(206, 137, 70, 0.25);
}

.button--primary:hover {
  background: var(--bronze-light);
}

.button--secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}

.button--ghost {
  min-height: 44px;
  padding: 0 14px;
  color: rgba(244, 239, 231, 0.82);
}

.button--compact {
  min-height: 42px;
  padding: 0 22px;
}

.button--block {
  width: 100%;
}

.button--light-text {
  background: #ffffff;
  color: var(--dark);
}

.button--on-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f4f7f5;
}

.button--on-hero {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: #fff;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(10, 16, 14, 0.26);
  backdrop-filter: blur(4px);
}

.mobile-sheet {
  position: fixed;
  inset: auto 0 0;
  z-index: 100;
  max-height: 86vh;
  padding: 22px 20px 26px;
  border-radius: 22px 22px 0 0;
  background: rgba(16, 17, 15, 0.98);
  box-shadow: 0 -22px 60px rgba(13, 17, 16, 0.12);
  overflow: auto;
}

.mobile-sheet__head,
.mobile-sheet__group,
.mobile-sheet__actions {
  display: grid;
  gap: 14px;
}

.mobile-sheet__head {
  grid-template-columns: 1fr auto;
  align-items: start;
  margin-bottom: 18px;
}

.mobile-sheet__eyebrow,
.mobile-sheet__label {
  color: rgba(207, 198, 184, 0.68);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-sheet__title {
  margin-top: 4px;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.mobile-sheet__close {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mobile-sheet__group {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-switcher--mobile {
  gap: 6px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
}

.lang-switcher--mobile .lang-switcher__btn {
  min-width: 38px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  color: rgba(244, 239, 231, 0.64);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.lang-switcher--mobile .lang-switcher__btn.is-active {
  background: rgba(206, 137, 70, 0.2);
  color: #f3d3aa;
}

.mobile-sheet__link {
  display: block;
  padding: 12px 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #f4efe7;
}

.mobile-sheet__link--product {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.mobile-sheet__link--product span {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(207, 198, 184, 0.74);
}

.section {
  padding: 88px 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(248, 245, 239, 0.9) 0%, rgba(243, 238, 231, 0.96) 100%);
}

.section--transition {
  background:
    linear-gradient(180deg, #0b0f0e 0%, #18130e 34%, #f3eee7 100%);
  margin-top: -64px;
  position: relative;
  z-index: 2;
}

.section--warm {
  background: #f3eee7;
}

.section--warm-alt {
  background: #f8f5ef;
}

.section--trust {
  padding-top: 12px;
  padding-bottom: 64px;
  background: #f3eee7;
}

.section--overview {
  background: #f8f5ef;
  padding-top: 40px;
  padding-bottom: 72px;
}

.section--faq {
  padding-top: 88px;
  padding-bottom: 88px;
  background: #f3eee7;
}

.section--final {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #f3eee7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(206, 137, 70, 0.2);
  border-radius: 8px;
  background: rgba(243, 211, 170, 0.22);
  color: var(--bronze-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow--soft {
  margin-bottom: 18px;
}

.eyebrow--dark {
  border-color: rgba(206, 137, 70, 0.28);
  background: rgba(206, 137, 70, 0.12);
  color: #f3d3aa;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2,
.trust-panel h2,
.final-cta h2 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.section-head p,
.trust-panel p,
.final-cta p {
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
}

.hero {
  position: relative;
  min-height: 740px;
  padding-top: 66px;
  background: linear-gradient(180deg, #090a09 0%, #0e1110 52%, #141614 100%);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  min-height: 740px;
  padding-top: 92px;
  padding-bottom: 84px;
}

.hero__media,
.hero__overlay,
.hero__grain,
.hero__beam,
.hero__mesh,
.hero__monolith,
.hero__arc {
  position: absolute;
}

.hero__media {
  inset: 0;
  background-image: url("/assets/hero-editorial-bronze.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero__overlay {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 10, 9, 0.86) 0%, rgba(9, 10, 9, 0.68) 38%, rgba(9, 10, 9, 0.25) 72%, rgba(9, 10, 9, 0.18) 100%),
    linear-gradient(180deg, rgba(9, 10, 9, 0.28) 0%, rgba(9, 10, 9, 0.18) 34%, rgba(9, 10, 9, 0.74) 100%);
}

.hero__grain {
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 5px 5px, 64px 64px;
  mix-blend-mode: soft-light;
}

.hero__beam {
  filter: blur(22px);
  border-radius: 999px;
}

.hero__beam--bronze {
  width: 58vw;
  height: 58vw;
  right: -8vw;
  top: 8vh;
  background: radial-gradient(circle, rgba(206, 137, 70, 0.44) 0%, rgba(206, 137, 70, 0.16) 34%, transparent 66%);
}

.hero__beam--ivory {
  width: 34vw;
  height: 34vw;
  right: 18vw;
  bottom: -8vh;
  background: radial-gradient(circle, rgba(244, 239, 231, 0.18) 0%, transparent 68%);
}

.hero__beam--copper {
  width: 18vw;
  height: 18vw;
  right: 30vw;
  top: 18vh;
  background: radial-gradient(circle, rgba(224, 161, 90, 0.16) 0%, transparent 70%);
}

.hero__mesh {
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 36px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(206, 137, 70, 0.12), rgba(206, 137, 70, 0));
  transform: rotate(-14deg);
}

.hero__mesh--left {
  right: 16vw;
  top: 10vh;
}

.hero__mesh--right {
  right: -4vw;
  top: 22vh;
  width: 28vw;
  height: 28vw;
  transform: rotate(18deg);
}

.hero__monolith {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, rgba(206, 137, 70, 0.28), rgba(122, 74, 36, 0.06));
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.05), 0 40px 100px rgba(0, 0, 0, 0.28);
}

.hero__monolith--main {
  width: 24vw;
  min-width: 280px;
  height: 70vh;
  min-height: 480px;
  right: 12vw;
  bottom: -4vh;
  border-radius: 34px;
  transform: rotate(8deg);
}

.hero__monolith--side {
  width: 14vw;
  min-width: 180px;
  height: 46vh;
  min-height: 300px;
  right: 34vw;
  bottom: 8vh;
  border-radius: 26px;
  transform: rotate(-12deg);
}

.hero__arc {
  border: 1px solid rgba(243, 211, 170, 0.24);
  border-radius: 999px;
}

.hero__arc--one {
  width: 58vw;
  height: 58vw;
  right: -4vw;
  top: 8vh;
}

.hero__arc--two {
  width: 36vw;
  height: 36vw;
  right: 16vw;
  top: 22vh;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero__content h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 7.6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #ffffff;
  font-weight: 800;
}

.hero__lead {
  max-width: 720px;
  margin: 0;
  color: rgba(244, 239, 231, 0.78);
  font-size: clamp(19px, 2vw, 21px);
  line-height: 1.55;
}

.hero__eyebrow {
  margin-bottom: 18px;
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #f4efe7;
  font-size: 14px;
}

.hero-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 6px rgba(206, 137, 70, 0.12);
}

.product-grid,
.value-grid {
  display: grid;
  gap: 24px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.value-card,
.deep-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.86);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover,
.value-card:hover,
.deep-card:hover {
  transform: translateY(-4px);
  border-color: rgba(206, 137, 70, 0.45);
  box-shadow: 0 24px 70px rgba(45, 32, 20, 0.1);
}

.product-card {
  display: grid;
  gap: 18px;
  min-height: 372px;
  padding: 34px;
}

.product-card::before,
.deep-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(206, 137, 70, 0.55), transparent);
}

.product-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(243, 211, 170, 0.16);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(122, 74, 36, 0.12);
  background: var(--surface-muted);
}

.product-card__icon svg {
  width: 24px;
  height: 24px;
}

.product-card h3,
.deep-card__copy h3,
.value-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.product-card p,
.deep-card__copy p,
.value-card p {
  margin: 0;
  color: var(--text-soft);
}

.product-card__list,
.trust-list,
.deep-card__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card__list li,
.trust-list li,
.deep-card__list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.product-card__list li::before,
.trust-list li::before,
.deep-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bronze);
}

.product-card__visual {
  position: relative;
  height: 152px;
  margin-top: auto;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(122, 74, 36, 0.12);
  background: linear-gradient(180deg, rgba(253, 250, 245, 0.92), rgba(242, 236, 227, 0.96));
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.product-card__cta::after {
  content: "→";
}

.product-card--vpn .product-card__badge,
.deep-card--vpn .deep-card__tone {
  color: #0b6b50;
  background: rgba(143, 243, 209, 0.18);
}

.product-card--mail .product-card__badge,
.deep-card--mail .deep-card__tone {
  color: #146595;
  background: rgba(127, 214, 255, 0.18);
}

.product-card--web .product-card__badge,
.deep-card--web .deep-card__tone {
  color: #8a5e18;
  background: rgba(246, 194, 133, 0.22);
}

.product-card--vpn .product-card__icon,
.deep-card--vpn .deep-card__visual {
  background:
    radial-gradient(circle at 30% 30%, rgba(143, 232, 200, 0.2), transparent 52%),
    rgba(238, 244, 242, 0.92);
}

.product-card--vpn .product-card__icon {
  color: #2f8f6f;
}

.product-card--mail .product-card__icon,
.deep-card--mail .deep-card__visual {
  background:
    radial-gradient(circle at 30% 30%, rgba(127, 214, 255, 0.26), transparent 52%),
    rgba(239, 247, 251, 0.92);
}

.product-card--mail .product-card__icon {
  color: #3778ad;
}

.product-card--web .product-card__icon,
.deep-card--web .deep-card__visual {
  background:
    radial-gradient(circle at 30% 30%, rgba(246, 194, 133, 0.24), transparent 52%),
    rgba(250, 246, 239, 0.92);
}

.product-card--web .product-card__icon {
  color: #9a6a2f;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card {
  padding: 28px;
  border-color: rgba(122, 74, 36, 0.18);
}

.value-card {
  background:
    radial-gradient(circle at top right, rgba(206, 137, 70, 0.08), transparent 34%),
    rgba(255, 253, 249, 0.82);
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 32px;
  padding: 72px;
  border: 1px solid rgba(206, 137, 70, 0.22);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(206, 137, 70, 0.22), transparent 30%),
    linear-gradient(180deg, #141614 0%, #0b0f0e 100%);
  color: #f4f7f5;
  box-shadow: 0 24px 70px rgba(7, 20, 17, 0.22);
}

.trust-list li {
  color: rgba(244, 247, 245, 0.82);
}

.trust-list li::before {
  background: var(--bronze-soft);
}

.trust-panel__visual {
  display: grid;
  place-items: center;
}

.trust-visual {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.trust-visual__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

.trust-visual__core,
.trust-visual__node {
  position: absolute;
  border-radius: 50%;
}

.trust-visual__core {
  width: 112px;
  height: 112px;
  inset: 0;
  margin: auto;
  background: radial-gradient(circle, rgba(206, 137, 70, 0.54), rgba(206, 137, 70, 0.12) 70%, transparent 76%);
  box-shadow: 0 0 80px rgba(206, 137, 70, 0.24);
}

.trust-visual__node {
  width: 16px;
  height: 16px;
  background: #f3d3aa;
}

.trust-visual__node--a { left: 62px; top: 84px; }
.trust-visual__node--b { right: 70px; top: 100px; }
.trust-visual__node--c { right: 90px; bottom: 72px; }

.trust-visual__line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(206, 137, 70, 0.08), rgba(206, 137, 70, 0.55), rgba(206, 137, 70, 0.08));
  transform-origin: left center;
}

.trust-visual__line--a { left: 78px; top: 92px; width: 140px; transform: rotate(32deg); }
.trust-visual__line--b { left: 178px; top: 146px; width: 92px; transform: rotate(-18deg); }
.trust-visual__line--c { left: 168px; bottom: 108px; width: 118px; transform: rotate(26deg); }

.deep-stack {
  display: grid;
  gap: 24px;
}

.deep-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 320px);
  gap: 24px;
  align-items: center;
  min-height: 304px;
  padding: 40px 42px;
  border-color: rgba(122, 74, 36, 0.18);
}

.deep-card__tone {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.deep-card__copy {
  display: grid;
  gap: 16px;
}

.deep-card__visual {
  position: relative;
  height: 204px;
  border-radius: 26px;
  border: 1px solid rgba(13, 17, 16, 0.06);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(244, 236, 226, 0.96));
}

.visual-asset {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06, 1.18);
  transform-origin: center center;
}

.visual-asset--product {
  height: 100%;
}

.visual-asset--deep {
  height: 100%;
}

.deep-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.deep-card__ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-weight: 700;
}

.deep-card__ghost::after {
  content: "→";
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(122, 74, 36, 0.16);
  border-radius: 20px;
  background: rgba(255, 251, 246, 0.84);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 20px 56px 20px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  line-height: 1.22;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 28px;
  line-height: 1;
  color: var(--text-soft);
  transition: transform 0.22s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__body {
  padding: 0 24px 18px;
  color: var(--text-soft);
}

.final-cta {
  padding: 68px 64px;
  border: 1px solid rgba(206, 137, 70, 0.16);
  border-radius: 36px;
  background:
    radial-gradient(circle at 24% 24%, rgba(206, 137, 70, 0.22), transparent 28%),
    radial-gradient(circle at 78% 36%, rgba(206, 137, 70, 0.12), transparent 24%),
    linear-gradient(180deg, #141614 0%, #090a09 100%);
  color: #f6fbf8;
  box-shadow: 0 28px 80px rgba(7, 20, 17, 0.22);
}


.final-cta p {
  color: rgba(246, 251, 248, 0.78);
}

.site-meta {
  padding: 0 0 44px;
  background: #0b0f0e;
}

.site-meta__inner {
  display: grid;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(206, 137, 70, 0.18);
}

.site-meta__brand {
  color: #f4efe7;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-meta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-meta__links a {
  color: rgba(244, 239, 231, 0.7);
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-meta__links a:hover {
  color: var(--bronze-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-aura__blur,
.hero__beam,
.hero__mesh,
.hero__monolith,
.hero__arc,
.trust-visual__core,
.trust-visual__node {
  animation: floatY 8s ease-in-out infinite;
}

.page-aura__blur--blue,
.hero__mesh--right,
.trust-visual__node--b {
  animation-delay: -2s;
}

.page-aura__blur--amber,
.hero__monolith--side,
.trust-visual__node--c {
  animation-delay: -4s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1023px) {
  .hide-mobile,
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .section {
    padding: 72px 0;
  }

  .hero__inner {
    min-height: 700px;
    padding-top: 82px;
    padding-bottom: 72px;
  }

  .section--trust {
    padding-top: 8px;
    padding-bottom: 56px;
  }

  .section--overview {
    padding-top: 24px;
    padding-bottom: 64px;
  }

  .trust-panel,
  .deep-card,
  .deep-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-panel {
    padding: 48px;
  }

  .deep-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px;
  }

  .deep-card:nth-child(even) .deep-card__copy,
  .deep-card:nth-child(even) .deep-card__visual {
    order: initial;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: 64px;
    width: 100%;
    padding: 0 18px;
  }

  .brand span {
    font-size: 16px;
  }

  .site-header .lang-switcher {
    display: none;
  }

  .lang-switcher--mobile {
    display: inline-flex;
  }

  .section {
    padding: 56px 0;
  }

  .section--trust {
    padding-top: 0;
    padding-bottom: 48px;
  }

  .section--overview {
    padding-top: 12px;
    padding-bottom: 56px;
  }

  .hero {
    min-height: 648px;
    padding-top: 64px;
  }

  .hero__content h1 {
    font-size: clamp(38px, 12vw, 46px);
    line-height: 1.04;
  }

  .hero__inner {
    min-height: 584px;
    padding-top: 52px;
    padding-bottom: 44px;
  }

  .hero__lead,
  .section-head p,
  .trust-panel p,
  .final-cta p {
    font-size: 16px;
  }

  .hero__actions,
  .final-cta__actions,
  .deep-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__mesh--left {
    width: 64vw;
    height: 64vw;
    right: 6vw;
    top: 16vh;
  }

  .hero__mesh--right {
    width: 42vw;
    height: 42vw;
    right: -8vw;
    top: 24vh;
  }

  .hero__monolith--main {
    width: 40vw;
    min-width: 180px;
    height: 52vh;
    min-height: 260px;
    right: 8vw;
    bottom: 10vh;
  }

  .hero__monolith--side {
    width: 26vw;
    min-width: 120px;
    height: 32vh;
    min-height: 160px;
    right: 42vw;
    bottom: 22vh;
  }

  .product-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .value-card,
  .trust-panel,
  .deep-card,
  .final-cta {
    padding: 24px;
    border-radius: 28px;
  }

  .product-card {
    min-height: auto;
  }

  .product-card__visual {
    height: 132px;
  }

  .deep-card__visual {
    height: 176px;
  }

  .faq-item summary {
    padding: 20px 54px 20px 20px;
    font-size: 18px;
  }

  .faq-item__body {
    padding: 0 20px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
  color: #f4efe7;
