/* ============================================================
   AG PERFORMANCE — Design System v2 · Brand Manual July 2026
   Black & Sand Dune · Jost + Cormorant Garamond · Editorial
   ============================================================ */
:root {
  /* Palette — Black & Sand Dune */
  --black: #14120F;        /* Ink */
  --black-2: #1B1815;      /* Ink raised */
  --black-3: #26221C;      /* Charcoal */
  --white: #EFE7D8;        /* Bone — light backgrounds & light text */
  --off-white: #E6DAC4;    /* Sand-bone blend — alternate light sections */
  --sand: #D8C9AE;         /* Sand */
  --taupe: #B3A184;        /* Taupe */
  --gold: #A98552;         /* Bronze — rare, the mark of the premium */
  --gold-light: #C29E66;   /* Bronze hover */
  --dark-gray: #3B352C;    /* Body text on light */
  --mid-gray: #8B8172;     /* Supporting text */
  --light-gray: #D5C8AF;   /* Hairlines on light */
  --hairline-dark: #2E2A23;/* Hairlines on ink */

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;  /* statements, quotes, numerals */
  --font-sans: 'Jost', 'Futura', 'Century Gothic', sans-serif; /* titles, labels, nav, body */

  --section-gap: 110px;
  --container-max: 1240px;
  --container-pad: 40px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* nothing may widen the page beyond the viewport — prevents pinch-zoom-out and misalignment on phones */
html, body { max-width: 100%; overflow-x: clip; }
@supports not (overflow-x: clip) { html, body { overflow-x: hidden; } }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark-gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Typography: Jost carries structure, Cormorant carries feeling ---------- */
h1, h2 {
  font-family: var(--font-sans);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--black);
}
h1 { font-size: clamp(34px, 5vw, 66px); line-height: 1.12; letter-spacing: 0.06em; }
h2 { font-size: clamp(24px, 3.2vw, 42px); line-height: 1.18; letter-spacing: 0.055em; }
h3 { font-family: var(--font-sans); font-size: 13px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--black); }

/* Cormorant accents inside titles */
h1 em, h2 em, em.gold {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold);
  font-size: 1.08em;
}
.statement {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.4;
  color: var(--black);
}
.serif { font-family: var(--font-serif); }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
section { padding: var(--section-gap) 0; position: relative; }

/* ---------- Kicker / section label (bronze, hairline) ---------- */
.section-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 22px;
}
.section-label::before {
  content: ""; display: inline-block; width: 36px; height: 1px;
  background: var(--gold); vertical-align: middle; margin-right: 14px;
}

/* ---------- Section tones: alternate ink and sand ---------- */
.dark { background: var(--black); color: var(--taupe); }
.dark h1, .dark h2, .dark h3 { color: var(--white); }
.dark .statement { color: var(--white); }
.dark .lead { color: var(--sand); }
.off { background: var(--off-white); }

.lead { font-size: 19px; font-weight: 300; line-height: 1.8; }
.gold-text { color: var(--gold); }

/* ---------- Buttons — quiet, tracked, precise ---------- */
.btn-primary, .btn-ghost, .btn-gold {
  display: inline-block; font-family: var(--font-sans);
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  transition: all .35s cubic-bezier(.4,0,.2,1); cursor: pointer; border: none;
  position: relative;
}
.btn-primary { background: var(--black); color: var(--white); padding: 18px 42px; }
.btn-primary:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--black); color: var(--black); padding: 17px 34px; background: transparent; }
.btn-ghost:hover { background: var(--black); color: var(--white); }
.btn-gold { border: 1px solid var(--gold); color: var(--gold); padding: 17px 40px; background: transparent; }
.btn-gold:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn-gold.solid { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold.solid:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ---------- Navigation ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 40px; display: flex; align-items: center; justify-content: space-between;
  background: transparent; transition: padding .4s, box-shadow .4s;
}
/* blur lives on a pseudo-element: backdrop-filter on nav itself would trap the
   fixed-position mobile menu inside the bar (containing-block rule) */
nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: transparent; transition: background .4s;
}
nav.scrolled { padding: 13px 40px; box-shadow: 0 1px 0 rgba(169,133,82,.28); }
nav.scrolled::before { background: rgba(20,18,15,.94); backdrop-filter: blur(14px); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 42px; width: auto; transition: transform .4s; }
.nav-logo:hover img { transform: scale(1.06); }
.nav-logo span { font-size: 13px; font-weight: 400; letter-spacing: 0.24em; text-transform: uppercase; color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: 12px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(239,231,216,.82); text-decoration: none; transition: color .25s; position: relative; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:1px; background:var(--gold); transition: width .3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold) !important;
  padding: 10px 24px; letter-spacing: 0.16em !important;
  transition: all .3s !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }
.nav-lang { color: rgba(239,231,216,.45) !important; }
.nav-lang:hover { color: var(--gold) !important; }

/* Dropdowns (desktop) */
.nav-links li { position: relative; }
.has-sub > a .caret { display: inline-block; margin-left: 7px; transition: transform .3s; }
.has-sub:hover > a .caret { transform: rotate(180deg); }
.sub-menu {
  position: absolute; top: 100%; left: -22px; min-width: 230px;
  background: rgba(20,18,15,.97); border: 1px solid rgba(169,133,82,.35);
  padding: 12px 0; list-style: none; margin-top: 14px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s;
}
.sub-menu::before { content: ""; position: absolute; top: -15px; left: 0; right: 0; height: 15px; }
.has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: none; }
.sub-menu a { display: block; padding: 11px 24px; font-size: 12px; letter-spacing: .1em; }
.sub-menu a::after { display: none; }
.sub-menu a:hover { background: rgba(169,133,82,.1); }

/* Social icons */
.nav-social { display: flex; align-items: center; gap: 16px; }
.nav-social a::after { display: none; }
.nav-social svg { width: 17px; height: 17px; stroke: rgba(239,231,216,.7); fill: none; stroke-width: 1.5; transition: stroke .25s, transform .25s; display: block; }
.nav-social a:hover svg { stroke: var(--gold); transform: translateY(-2px); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; z-index: 102; }
.nav-toggle span { display: block; width: 26px; height: 1.5px; background: var(--white); margin: 7px 0; transition: all .35s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
/* ---------- Mobile menu — quiet luxury, compact, no scrolling ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: block; position: relative; z-index: 102; }
  /* logo disappears while the menu is open */
  body.menu-open .nav-logo { opacity: 0; pointer-events: none; }
  .nav-logo { transition: opacity .3s; }
  .nav-links {
    position: fixed; inset: 0; z-index: 101;
    background:
      radial-gradient(120% 60% at 50% 0%, rgba(169,133,82,.10), transparent 60%),
      rgba(17,15,12,.99);
    flex-direction: column; justify-content: center; align-items: stretch; gap: 0;
    opacity: 0; pointer-events: none; visibility: hidden;
    transition: opacity .5s, visibility .5s;
    overflow: hidden; padding: 60px 34px 24px;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; visibility: visible; }
  body.menu-open { overflow: hidden; }

  .nav-links > li {
    border-bottom: 1px solid rgba(169,133,82,.18);
    opacity: 0; transform: translateY(14px);
  }
  .nav-links.open > li { animation: menuItem .55s cubic-bezier(.22,.6,.2,1) forwards; }
  .nav-links.open > li:nth-child(1) { animation-delay: .06s; }
  .nav-links.open > li:nth-child(2) { animation-delay: .11s; }
  .nav-links.open > li:nth-child(3) { animation-delay: .16s; }
  .nav-links.open > li:nth-child(4) { animation-delay: .21s; }
  .nav-links.open > li:nth-child(5) { animation-delay: .26s; }
  .nav-links.open > li:nth-child(6) { animation-delay: .31s; }
  .nav-links.open > li:nth-child(7) { animation-delay: .36s; }
  .nav-links.open > li:nth-child(8) { animation-delay: .41s; }
  @keyframes menuItem { to { opacity: 1; transform: none; } }

  .nav-links > li > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 0; font-size: 13px; letter-spacing: .22em; font-weight: 400;
  }
  .nav-links a::after { display: none; }
  .has-sub > a .caret { display: inline-block; width: 11px; height: 7px; opacity: .7; }
  .has-sub.open > a .caret { transform: rotate(180deg); }
  /* submenus collapsed — tap to uncover */
  .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: none; border: none; min-width: 0;
    margin: 0; padding: 0 0 0 20px; border-left: 1px solid rgba(169,133,82,.35);
    max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1);
  }
  .has-sub.open .sub-menu { max-height: 160px; margin-bottom: 10px; }
  .sub-menu a { padding: 7px 0; font-size: 11px; letter-spacing: .16em; color: var(--taupe); }
  .sub-menu a:hover { background: none; color: var(--gold); }

  .nav-social { border-bottom: none !important; padding: 20px 0 0; justify-content: center; gap: 32px; }
  .nav-social svg { width: 19px; height: 19px; }
  .nav-links .nav-cta { display: block; text-align: center; margin-top: 16px; padding: 13px 24px; justify-content: center; }
  .nav-links li:has(.nav-cta), .nav-links li:has(.nav-lang) { border-bottom: none; }
  .nav-links .nav-lang { text-align: center; padding: 12px 0; letter-spacing: .3em; justify-content: center; }
}
@media (max-width: 900px) and (max-height: 620px) {
  .nav-links { padding: 48px 30px 16px; }
  .nav-links > li > a { padding: 9px 0; font-size: 12px; }
  .nav-links .nav-cta { margin-top: 10px; padding: 11px 24px; }
  .nav-social { padding-top: 12px; }
}

/* ---------- Hero — ink, cinematic, alive ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--black); color: var(--white); overflow: hidden; padding: 150px 0 110px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: .34; animation: heroZoom 20s ease-out forwards;
  will-change: transform;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,.6) 0%, rgba(20,18,15,.28) 45%, rgba(20,18,15,.95) 100%);
}
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }
.hero canvas.dust { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
/* Hero slideshow */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slides .hero-bg { opacity: 0; transition: opacity 2s ease; animation: none; }
.hero-slides .hero-bg.active { opacity: .34; animation: heroZoom 9s ease-out forwards; }
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--white); margin: 26px 0 30px; }
.hero .lead { max-width: 580px; color: rgba(239,231,216,.85); }
.hero-cta { margin-top: 60px; display: flex; gap: 24px; row-gap: 20px; flex-wrap: wrap; }
.hero-signature { margin-top: 44px !important; }
.hero-kicker {
  font-size: 11px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 16px;
}
.hero-kicker::before { content: ""; width: 52px; height: 1px; background: var(--gold); }
.hero-signature {
  margin-top: 34px; font-family: var(--font-serif); font-style: italic;
  font-size: 19px; color: var(--taupe);
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 10px; letter-spacing: .34em; text-transform: uppercase;
  color: rgba(239,231,216,.4); text-decoration: none;
}
.hero-scroll::after {
  content: ""; display: block; width: 1px; height: 44px; margin: 10px auto 0;
  background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2.2s infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
.hero.hero-inner { min-height: 64svh; padding: 170px 0 100px; }

/* Word-by-word hero title rise */
.hero h1 .w { display: inline-block; opacity: 0; transform: translateY(28px); animation: wordRise .9s cubic-bezier(.22,.6,.2,1) forwards; }
@keyframes wordRise { to { opacity: 1; transform: none; } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(40px); filter: blur(4px);
  transition: opacity 1s cubic-bezier(.22,.6,.2,1), transform 1s cubic-bezier(.22,.6,.2,1), filter 1s; }
.reveal.visible { opacity: 1; transform: none; filter: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }
.reveal-d4 { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .hero-bg { animation: none; }
  .hero h1 .w { opacity: 1; transform: none; animation: none; }
  .marquee-track { animation: none !important; }
  .a6-ring, .a6-comet, .a6-node .pulse, .a6-core::before { animation: none !important; }
  .hero canvas.dust { display: none; }
}

/* ---------- Marquee — pillar strip ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--hairline-dark); border-bottom: 1px solid var(--hairline-dark); background: var(--black); padding: 22px 0; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 38s linear infinite; }
.marquee span {
  font-family: var(--font-sans); font-size: 13px; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--taupe);
  padding: 0 34px; white-space: nowrap;
}
.marquee span i { font-style: normal; color: var(--gold); padding-right: 20px; }
.marquee svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; vertical-align: -3px; margin-right: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 44px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) { .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: left; }
.stat-num { font-family: var(--font-serif); font-weight: 400; font-size: clamp(46px, 5vw, 72px); color: var(--gold); line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--mid-gray); margin-top: 14px; }
@media (max-width: 768px) { .stats { grid-template-columns: 1fr 1fr; gap: 40px 20px; } }

/* ---------- Cards — hairline, editorial ---------- */
.card {
  background: var(--white); border: 1px solid var(--light-gray);
  padding: 46px 38px; transition: transform .45s cubic-bezier(.22,.6,.2,1), box-shadow .45s, border-color .45s;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .5s cubic-bezier(.22,.6,.2,1);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(20,18,15,.10); border-color: var(--taupe); }
.card:hover::before { width: 100%; }
.card .card-num { font-family: var(--font-serif); font-size: 19px; color: var(--gold); margin-bottom: 20px; }
.card h3 { margin-bottom: 8px; }
.card .card-title { font-family: var(--font-sans); font-weight: 400; text-transform: uppercase; letter-spacing: .08em; font-size: 20px; color: var(--black); margin-bottom: 16px; line-height: 1.3; }
.card p { font-size: 15px; line-height: 1.75; color: var(--dark-gray); }
.card .card-link { margin-top: auto; padding-top: 24px; font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: letter-spacing .3s; }
.card .card-link:hover { letter-spacing: .24em; color: var(--black); }
.dark .card { background: var(--black-2); border-color: var(--hairline-dark); }
.dark .card:hover { border-color: var(--gold); box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.dark .card .card-title { color: var(--white); }
.dark .card p { color: var(--taupe); }
.dark .card .card-link:hover { color: var(--white); }

/* ---------- Price rows ---------- */
.price-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--light-gray);
  transition: padding-left .35s, border-color .35s;
}
.price-row:hover { padding-left: 14px; border-color: var(--gold); }
.price-row .pr-name { font-weight: 400; font-size: 16px; letter-spacing: .06em; text-transform: uppercase; color: var(--black); }
.price-row .pr-desc { font-size: 14px; color: var(--mid-gray); margin-top: 4px; }
.price-row .pr-dur { font-size: 12px; letter-spacing: .12em; color: var(--mid-gray); white-space: nowrap; }
.price-row .pr-price { font-family: var(--font-serif); font-size: 25px; color: var(--gold); white-space: nowrap; }
@media (max-width: 640px) {
  .price-row { grid-template-columns: 1fr auto; }
  .price-row .pr-dur { display: none; }
}

/* ---------- Pricing tiers ---------- */
.tier {
  border: 1px solid var(--light-gray); padding: 50px 42px; background: var(--white);
  display: flex; flex-direction: column; transition: transform .45s, box-shadow .45s, border-color .45s;
}
.tier:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 30px 60px rgba(20,18,15,.10); }
.tier.featured { border: 1px solid var(--gold); background: var(--black); }
.tier.featured h3, .tier.featured .tier-price { color: var(--white); }
.tier.featured p, .tier.featured li { color: var(--taupe); }
.tier .tier-price { font-family: var(--font-serif); font-size: 44px; font-weight: 400; color: var(--black); margin: 20px 0 4px; }
.tier .tier-per { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 26px; }
.tier ul { list-style: none; margin: 0 0 34px; }
.tier li { font-size: 15px; padding: 9px 0 9px 28px; position: relative; }
.tier li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.tier .btn-primary, .tier .btn-gold { margin-top: auto; text-align: center; }
.tier-badge { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 6px 14px; margin-bottom: 20px; align-self: flex-start; }

/* ---------- A6 pillar accordion ---------- */
.pillar { border-bottom: 1px solid var(--hairline-dark); }
.pillar-head {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: baseline; gap: 28px; padding: 36px 0; text-align: left;
}
.pillar-head .p-num { font-family: var(--font-serif); font-size: 19px; color: var(--gold); min-width: 42px; }
.pillar-head .p-title { font-family: var(--font-sans); font-weight: 300; text-transform: uppercase; letter-spacing: .08em; font-size: clamp(20px, 2.6vw, 32px); color: var(--white); flex: 1; transition: color .3s, letter-spacing .4s; }
.pillar-head:hover .p-title { color: var(--gold); letter-spacing: .11em; }
.pillar-head .p-icon { font-size: 24px; color: var(--gold); transition: transform .4s; font-family: var(--font-serif); }
.pillar.open .p-icon { transform: rotate(45deg); }
.pillar-body { max-height: 0; overflow: hidden; transition: max-height .6s cubic-bezier(.4,0,.2,1); }
.pillar-body-inner { padding: 0 0 42px 70px; max-width: 780px; }
.pillar-body-inner .p-tag { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--gold); margin-bottom: 16px; }
.pillar-body-inner p { color: var(--taupe); font-size: 16px; margin-bottom: 14px; }
@media (max-width: 640px) { .pillar-body-inner { padding-left: 0; } }

/* ---------- A6 ORBITAL DIAGRAM ---------- */
.a6-orbit-wrap { position: relative; max-width: 780px; margin: 70px auto 0; }
.a6-orbit { position: relative; width: 100%; aspect-ratio: 1; }
.a6-ring { position: absolute; inset: 9%; border: 1px solid rgba(169,133,82,.4); border-radius: 50%; animation: ringGlow 6s ease-in-out infinite; }
@keyframes ringGlow { 0%,100% { box-shadow: 0 0 24px rgba(169,133,82,.12), inset 0 0 24px rgba(169,133,82,.08); } 50% { box-shadow: 0 0 60px rgba(169,133,82,.28), inset 0 0 40px rgba(169,133,82,.15); } }
/* comet travelling the ring */
.a6-comet { position: absolute; inset: 9%; border-radius: 50%; animation: cometSpin 14s linear infinite; }
.a6-comet::before {
  content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold-light);
  box-shadow: 0 0 14px 4px rgba(194,158,102,.75);
}
.a6-comet.slow { animation-duration: 23s; animation-direction: reverse; }
.a6-comet.slow::before { width: 5px; height: 5px; opacity: .7; }
@keyframes cometSpin { to { transform: rotate(360deg); } }
/* center core */
.a6-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 34%; aspect-ratio: 1; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.a6-core::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(169,133,82,.28) 0%, rgba(169,133,82,.07) 55%, transparent 72%);
  animation: corePulse 4.5s ease-in-out infinite;
}
@keyframes corePulse { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.14); opacity: 1; } }
.a6-core img { width: 62%; position: relative; filter: drop-shadow(0 0 18px rgba(169,133,82,.45)); }
.a6-core img.human {
  width: auto; height: 215%; max-width: none;
  mix-blend-mode: screen; /* melts the black background into the ink section */
  filter: drop-shadow(0 0 24px rgba(169,133,82,.35));
}
/* nodes */
.a6-node {
  position: absolute; width: 88px; height: 88px; margin: -44px 0 0 -44px;
  border-radius: 50%; border: 1px solid rgba(169,133,82,.55);
  background: rgba(20,18,15,.88);
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s, border-color .4s, box-shadow .4s;
  cursor: pointer; z-index: 3;
}
.a6-node svg { width: 34px; height: 34px; stroke: var(--white); stroke-width: 1.3; fill: none; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s; }
.a6-node .pulse { position: absolute; inset: -1px; border-radius: 50%; border: 1px solid rgba(169,133,82,.5); animation: nodePulse 3.4s ease-out infinite; }
@keyframes nodePulse { 0% { transform: scale(1); opacity: .7; } 70% { transform: scale(1.5); opacity: 0; } 100% { opacity: 0; } }
.a6-node:hover { transform: scale(1.12); border-color: var(--gold-light); box-shadow: 0 0 34px rgba(169,133,82,.5); }
.a6-node:hover svg { stroke: var(--gold-light); }
.a6-node-label {
  position: absolute; white-space: normal; max-width: 200px; width: max-content; text-align: left;
  font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--white);
}
.a6-node.pos1 .a6-node-label, .a6-node.pos4 .a6-node-label { white-space: nowrap; max-width: none; }
.a6-node-label .n { color: var(--gold); font-family: var(--font-serif); font-size: 13px; letter-spacing: .08em; margin-right: 10px; }
.a6-node-label .t { display: block; font-size: 11px; }
.a6-node-label .s { display: block; font-size: 11px; letter-spacing: .02em; text-transform: none; font-weight: 300; color: var(--taupe); margin-top: 3px; }
/* positions: 6 nodes on the ring (ring inset 9% → radius 41% of box) */
.a6-node.pos1 { top: 9%;  left: 50%; }   /* 12 o'clock */
.a6-node.pos2 { top: 29.5%; left: 85.5%; } /* 2 o'clock */
.a6-node.pos3 { top: 70.5%; left: 85.5%; } /* 4 o'clock */
.a6-node.pos4 { top: 91%; left: 50%; }   /* 6 o'clock */
.a6-node.pos5 { top: 70.5%; left: 14.5%; } /* 8 o'clock */
.a6-node.pos6 { top: 29.5%; left: 14.5%; } /* 10 o'clock */
.a6-node.pos1 .a6-node-label { bottom: calc(100% + 14px); left: 50%; transform: translateX(-50%); text-align: center; }
.a6-node.pos2 .a6-node-label, .a6-node.pos3 .a6-node-label { left: calc(100% + 18px); top: 50%; transform: translateY(-50%); }
.a6-node.pos4 .a6-node-label { top: calc(100% + 14px); left: 50%; transform: translateX(-50%); text-align: center; }
.a6-node.pos5 .a6-node-label, .a6-node.pos6 .a6-node-label { right: calc(100% + 18px); top: 50%; transform: translateY(-50%); text-align: right; }
/* tablets & small laptops: shrink ring so outside labels always fit the viewport */
@media (max-width: 1120px) and (min-width: 561px) {
  .a6-orbit-wrap { width: min(780px, calc(100vw - 300px)); min-width: 280px; margin-left: auto; margin-right: auto; }
  .a6-node-label { font-size: 10px; letter-spacing: .12em; max-width: 100px; }
  .a6-node-label .s { display: none; }
  .a6-node.pos2 .a6-node-label, .a6-node.pos3 .a6-node-label { left: calc(100% + 12px); }
  .a6-node.pos5 .a6-node-label, .a6-node.pos6 .a6-node-label { right: calc(100% + 12px); }
}
@media (max-width: 860px) {
  .a6-node { width: 60px; height: 60px; margin: -30px 0 0 -30px; }
  .a6-node svg { width: 24px; height: 24px; }
  .a6-node-label { font-size: 9px; letter-spacing: .1em; }
}
@media (max-width: 560px) {
  .a6-orbit-wrap { margin-top: 36px; max-width: 100%; }
  /* ring pulled in so outside labels always stay on screen */
  .a6-orbit { width: calc(100% - 108px); margin: 0 auto; }
  .a6-node { width: 44px; height: 44px; margin: -22px 0 0 -22px; }
  .a6-node svg { width: 18px; height: 18px; }
  .a6-core { width: 40%; }
  .a6-comet::before { width: 5px; height: 5px; }
  /* numbers + titles visible next to the icons, outside the ring like the reference */
  .a6-node .a6-node-label {
    display: block; position: absolute;
    font-size: 8.5px; letter-spacing: .08em; line-height: 1.35;
    white-space: normal; max-width: 62px;
  }
  .a6-node .a6-node-label .n { display: block; font-size: 9px; margin: 0 0 1px; }
  .a6-node .a6-node-label .t { display: block; }
  .a6-node .a6-node-label .s { display: none; }
  .a6-node.pos1 .a6-node-label { bottom: calc(100% + 6px); top: auto; left: 50%; right: auto; transform: translateX(-50%); text-align: center; white-space: nowrap; max-width: none; }
  .a6-node.pos1 .a6-node-label .n, .a6-node.pos1 .a6-node-label .t { display: inline; margin-right: 5px; }
  .a6-node.pos4 .a6-node-label { top: calc(100% + 6px); bottom: auto; left: 50%; right: auto; transform: translateX(-50%); text-align: center; white-space: nowrap; max-width: none; }
  .a6-node.pos4 .a6-node-label .n, .a6-node.pos4 .a6-node-label .t { display: inline; margin-right: 5px; }
  .a6-node.pos2 .a6-node-label, .a6-node.pos3 .a6-node-label { left: calc(100% + 7px); right: auto; top: 50%; transform: translateY(-50%); text-align: left; }
  .a6-node.pos5 .a6-node-label, .a6-node.pos6 .a6-node-label { right: calc(100% + 7px); left: auto; top: 50%; transform: translateY(-50%); text-align: right; }
  .a6-legend { display: none; }
}
/* mobile legend under the orbit */
.a6-legend { display: none; }
@media (max-width: 560px) {
  .a6-legend { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; margin-top: 36px; }
  .a6-legend div { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--white); }
  .a6-legend div i { font-style: normal; color: var(--gold); font-family: var(--font-serif); margin-right: 8px; }
}

/* ---------- Media frames ---------- */
.media-frame { position: relative; overflow: hidden; }
.media-frame img, .media-frame video { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.22,.6,.2,1); }
.media-frame:hover img { transform: scale(1.05); }
.media-frame.tall { aspect-ratio: 4/5; }
.media-frame.wide { aspect-ratio: 16/10; }
.media-frame .gold-frame { position: absolute; inset: 18px; border: 1px solid rgba(169,133,82,.55); pointer-events: none; transition: inset .5s cubic-bezier(.22,.6,.2,1); }
.media-frame:hover .gold-frame { inset: 12px; }

/* ---------- Quote ---------- */
.quote { max-width: 900px; margin: 0 auto; text-align: center; }
.quote blockquote { font-family: var(--font-serif); font-size: clamp(24px, 2.8vw, 36px); line-height: 1.42; color: var(--white); font-style: italic; font-weight: 400; }
.quote cite { display: block; margin-top: 30px; font-style: normal; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--black); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 140px; height: 1px; background: var(--gold); }
.cta-band .container { text-align: center; }
.cta-band h2 { color: var(--white); max-width: 760px; margin: 0 auto 22px; }
.cta-band p { color: var(--taupe); max-width: 560px; margin: 0 auto 42px; }
.cta-band .statement { color: var(--taupe); margin: 0 auto 42px; font-size: clamp(19px,2vw,26px); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
label { display: block; font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 8px; }
input, select, textarea {
  width: 100%; padding: 15px 16px; font-family: var(--font-sans); font-weight: 300; font-size: 15px;
  border: 1px solid var(--light-gray); background: var(--white); color: var(--black);
  transition: border-color .3s; border-radius: 0; -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
.dark input, .dark select, .dark textarea { background: var(--black-2); border-color: var(--hairline-dark); color: var(--white); }

/* Checkboxes — small, bronze, with a visible check */
input[type="checkbox"] {
  width: 16px; height: 16px; min-width: 16px; flex: 0 0 16px;
  padding: 0; margin: 0;
  appearance: none; -webkit-appearance: none;
  border: 1px solid var(--gold); background: transparent;
  cursor: pointer; position: relative; display: inline-block;
  transition: background .2s;
}
input[type="checkbox"]:checked { background: var(--gold); }
input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 4.5px; top: 1.5px;
  width: 4px; height: 8px;
  border: solid var(--black); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.dark input[type="checkbox"] { background: transparent; border-color: var(--gold); }
.dark input[type="checkbox"]:checked { background: var(--gold); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 0; text-align: left; font-family: var(--font-sans); font-size: 16px; font-weight: 400; letter-spacing: .04em; color: var(--black); }
.faq-q .p-icon { color: var(--gold); font-size: 22px; transition: transform .35s; }
.faq-item.open .p-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s ease; }
.faq-a p { padding-bottom: 26px; font-size: 15px; color: var(--dark-gray); max-width: 720px; }

/* ---------- Tables ---------- */
.price-table { width: 100%; border-collapse: collapse; }
.price-table th { font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--mid-gray); text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--gold); }
.price-table td { padding: 19px 12px; border-bottom: 1px solid var(--light-gray); font-size: 15px; }
.price-table td:last-child { font-family: var(--font-serif); font-size: 21px; color: var(--gold); }
.dark .price-table td { border-color: var(--hairline-dark); color: var(--sand); }

/* ---------- Footer ---------- */
footer { background: var(--black); color: var(--mid-gray); padding: 76px 40px 0; border-top: 1px solid rgba(169,133,82,.3); }
.footer-inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo img { height: 48px; margin-bottom: 20px; }
.footer-brand p { font-size: 13px; line-height: 1.75; max-width: 300px; }
.footer-brand .statement { font-size: 16px; color: var(--taupe); margin-top: 16px; }
.footer-col h4 { font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; font-weight: 300; color: var(--mid-gray); text-decoration: none; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-social { display: flex; gap: 18px; padding-top: 8px; }
.footer-social a:hover { padding-left: 0; }
.footer-social svg { width: 18px; height: 18px; stroke: var(--mid-gray); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke .25s, transform .25s; display: block; }
.footer-social a:hover svg { stroke: var(--gold); transform: translateY(-2px); }
.footer-bottom { max-width: var(--container-max); margin: 48px auto 0; padding: 26px 0; border-top: 1px solid var(--hairline-dark); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; }
.footer-bottom a { color: var(--mid-gray); text-decoration: none; margin-left: 20px; }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-inner { grid-template-columns: 1fr; } footer { padding: 56px 24px 0; } }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; } .mt-64 { margin-top: 64px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; } .mb-64 { margin-bottom: 64px; }
.maxw-680 { max-width: 680px; } .maxw-760 { max-width: 760px; } .mx-auto { margin-left: auto; margin-right: auto; }
.eyebrow-note { font-size: 13px; color: var(--mid-gray); }
.divider-gold { width: 64px; height: 1px; background: var(--gold); border: none; margin: 34px 0; }

/* ---------- Holistic service accordions ---------- */
.svc { border-bottom: 1px solid var(--light-gray); }
.svc-head {
  width: 100%; background: none; border: none; cursor: pointer;
  display: grid; grid-template-columns: 1fr auto auto 26px; gap: 24px; align-items: center;
  padding: 26px 0; text-align: left; font-family: var(--font-sans);
  transition: padding-left .35s;
}
.svc-head:hover { padding-left: 14px; }
.svc-head .pr-name { display: block; font-weight: 400; font-size: 16px; letter-spacing: .06em; text-transform: uppercase; color: var(--black); }
.svc-head .pr-desc { display: block; font-size: 14px; font-weight: 300; color: var(--mid-gray); margin-top: 4px; }
.svc-head .pr-dur { font-size: 12px; letter-spacing: .12em; color: var(--mid-gray); white-space: nowrap; }
.svc-head .pr-price { font-family: var(--font-serif); font-size: 25px; color: var(--gold); white-space: nowrap; }
.svc .p-icon { color: var(--gold); font-size: 24px; font-family: var(--font-serif); transition: transform .35s; text-align: center; }
.svc.open .p-icon { transform: rotate(45deg); }
.svc.open .svc-head { padding-left: 14px; }
.svc-body { max-height: 0; overflow: hidden; transition: max-height .55s cubic-bezier(.4,0,.2,1); }
.svc-body-inner { padding: 4px 0 34px; max-width: 720px; }
.svc-body-inner p { font-size: 15px; line-height: 1.75; margin-bottom: 12px; }
.svc-body-inner .svc-tag { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--gold); }
.svc-body-inner .card-link { font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.svc-body-inner .card-link:hover { color: var(--black); }
@media (max-width: 640px) {
  .svc-head { grid-template-columns: 1fr auto 22px; gap: 14px; }
  .svc-head .pr-dur { display: none; }
  .svc-head .pr-price { font-size: 20px; }
}

/* ---------- Footer newsletter ---------- */
.footer-newsletter {
  max-width: var(--container-max); margin: 56px auto 0;
  padding: 40px 0 44px; border-top: 1px solid var(--hairline-dark);
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.footer-newsletter h4 { font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.footer-newsletter .statement { font-size: clamp(18px, 1.8vw, 24px); color: var(--white); }
.nl-form { display: flex; gap: 0; }
.nl-form input[type="email"] {
  flex: 1; background: transparent; border: none; border-bottom: 1px solid var(--hairline-dark);
  color: var(--white); padding: 14px 4px; font-size: 15px; transition: border-color .3s;
}
.nl-form input[type="email"]:focus { outline: none; border-color: var(--gold); }
.nl-form button {
  background: transparent; border: none; border-bottom: 1px solid var(--hairline-dark);
  color: var(--gold); font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; padding: 14px 0 14px 24px;
  cursor: pointer; transition: color .3s, letter-spacing .3s;
}
.nl-form button:hover { color: var(--gold-light); letter-spacing: .26em; }
.nl-note { font-size: 11px; color: var(--mid-gray); margin-top: 12px; }
.nl-note a { color: var(--mid-gray); }
.nl-thanks { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--gold); padding: 14px 0; }
@media (max-width: 768px) { .footer-newsletter { grid-template-columns: 1fr; gap: 20px; } }

/* ---------- Newsletter popup ---------- */
.nl-popup-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,18,15,.72); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; transition: opacity .5s;
}
.nl-popup-overlay.show { opacity: 1; }
.nl-popup {
  position: relative; max-width: 520px; width: 100%;
  background: var(--black); border: 1px solid rgba(169,133,82,.5);
  padding: 56px 48px 48px; text-align: left;
  transform: translateY(28px); opacity: 0; transition: transform .6s cubic-bezier(.22,.6,.2,1), opacity .6s;
  box-shadow: 0 40px 100px rgba(0,0,0,.55);
}
.nl-popup-overlay.show .nl-popup { transform: none; opacity: 1; }
.nl-popup::before { content: ""; position: absolute; top: 0; left: 48px; width: 56px; height: 1px; background: var(--gold); }
.nl-popup img.mark { height: 40px; margin-bottom: 24px; }
.nl-popup .kicker { font-size: 10px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.nl-popup .statement { color: var(--white); font-size: clamp(21px, 2.4vw, 27px); margin-bottom: 10px; }
.nl-popup p.sub { font-size: 14px; font-weight: 300; color: var(--taupe); margin-bottom: 28px; }
.nl-popup .nl-form input[type="email"] { border-bottom-color: #3a352c; }
.nl-popup .nl-note { margin-top: 14px; }
.nl-close {
  position: absolute; top: 14px; right: 14px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; color: var(--mid-gray);
  font-size: 22px; line-height: 1; transition: color .3s, transform .3s;
}
.nl-close:hover { color: var(--white); transform: rotate(90deg); }
@media (max-width: 560px) { .nl-popup { padding: 44px 28px 36px; } .nl-popup::before { left: 28px; } }

@media (max-width: 768px) {
  :root { --section-gap: 76px; --container-pad: 24px; }
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
}

/* ============ E-book info modal + coming soon ============ */
.eb-soon { font-family: var(--font-serif); font-style: italic; font-size: 21px; color: var(--gold); margin: 28px 0 22px; }
.eb-modal-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(20,18,15,.78); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .35s ease; }
.eb-modal-overlay.show { opacity: 1; pointer-events: auto; }
.eb-modal { position: relative; background: var(--black-3); border: 1px solid var(--hairline-dark); max-width: 580px; width: 100%; max-height: 86svh; overflow-y: auto; padding: 52px 48px 44px; transform: translateY(16px); opacity: 0; transition: transform .4s ease .05s, opacity .4s ease .05s; }
.eb-modal-overlay.show .eb-modal { transform: none; opacity: 1; }
.eb-modal::before { content: ""; position: absolute; top: 0; left: 48px; width: 56px; height: 1px; background: var(--gold); }
.eb-modal .kicker { font-size: 10px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.eb-modal h3 { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: .06em; font-weight: 500; color: var(--white); font-size: 22px; margin-bottom: 16px; }
.eb-modal > p { color: var(--taupe); font-size: 14.5px; font-weight: 300; line-height: 1.75; }
.eb-modal ul { list-style: none; margin: 22px 0 0; padding: 0; }
.eb-modal li { padding: 10px 0; border-bottom: 1px solid rgba(239,231,216,.08); color: var(--sand); font-size: 13.5px; font-weight: 300; letter-spacing: .02em; line-height: 1.55; }
.eb-modal .eb-note { margin-top: 26px; font-family: var(--font-serif); font-style: italic; font-size: 17px; color: var(--white); }
.eb-close { position: absolute; top: 14px; right: 14px; background: none; border: none; padding: 10px; color: var(--taupe); font-size: 26px; line-height: 1; cursor: pointer; font-family: var(--font-sans); }
.eb-close:hover { color: var(--white); }
@media (max-width: 620px) { .eb-modal { padding: 42px 26px 36px; } .eb-modal::before { left: 26px; } }

/* 5-stat band (homepage) */
.stats-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 768px) { .stats-5 { grid-template-columns: 1fr 1fr; } }

/* ============ AG Performance App phone mockup ============ */
.phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.phone { position: relative; width: min(300px, 78vw); aspect-ratio: 300/620; background: #050d16; border-radius: 44px; padding: 12px; box-shadow: 0 0 0 1.5px #3a3428, 0 30px 80px rgba(0,0,0,.55); animation: phoneFloat 7s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .phone { animation: none; } }
@keyframes phoneFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 34%; height: 22px; background: #050d16; border-radius: 0 0 16px 16px; z-index: 2; }
.phone-screen { height: 100%; border-radius: 34px; overflow: hidden; background: linear-gradient(165deg, #0f2740 0%, #0a1b2e 55%, #081525 100%); display: flex; flex-direction: column; padding: 34px 16px 0; font-family: var(--font-sans); }
.ph-status { display: flex; justify-content: space-between; font-size: 10px; color: #e8eef5; padding: 0 6px 12px; letter-spacing: .04em; }
.ph-head { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.ph-back { color: #8fa3b8; font-size: 15px; line-height: 1.2; }
.ph-title { color: #f2f6fa; font-size: 14.5px; font-weight: 500; line-height: 1.25; }
.ph-sub { color: #7d92a8; font-size: 9.5px; margin-top: 3px; }
.ph-progress-row { display: flex; justify-content: space-between; font-size: 9px; color: #9fb2c5; margin: 6px 0 6px; }
.ph-bar { height: 5px; border-radius: 3px; background: #16324e; overflow: hidden; margin-bottom: 16px; }
.ph-bar i { display: block; height: 100%; width: 50%; border-radius: 3px; background: #C9A254; }
.ph-week { font-size: 9.5px; color: #c8d4e0; letter-spacing: .08em; margin-bottom: 10px; text-transform: uppercase; }
.ph-week b { color: #C9A254; font-weight: 600; margin-right: 6px; }
.ph-card-head { display: flex; gap: 10px; align-items: center; background: #10283f; border: 1px solid #1d3a57; border-radius: 12px 12px 0 0; padding: 11px 12px; }
.ph-check { width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%; background: #2f9e63; color: #fff; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.ph-card-title { color: #f2f6fa; font-size: 12px; font-weight: 500; }
.ph-card-sub { color: #C9A254; font-size: 9px; }
.ph-ex { background: #0d2136; border: 1px solid #1a334d; border-top: none; padding: 10px 12px; }
.ph-ex:last-of-type { border-radius: 0 0 12px 12px; }
.ph-ex-t { color: #eef3f8; font-size: 11px; font-weight: 500; }
.ph-ex-t em { font-style: normal; color: #C9A254; margin-right: 5px; }
.ph-ex-s { color: #7d92a8; font-size: 8.5px; margin-top: 3px; }
.ph-tabs { margin-top: auto; display: flex; justify-content: space-around; border-top: 1px solid #16324e; padding: 12px 0 18px; background: #081525; margin-left: -16px; margin-right: -16px; }
.ph-tabs span { font-size: 8.5px; color: #64798f; letter-spacing: .03em; }
.ph-tabs span.on { color: #C9A254; }
.phone-caption { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); text-align: center; }

/* ============ A6 block: centered layout on phones ============ */
@media (max-width: 560px) {
  #a6 .section-label, #a6 h2, #a6 .lead { text-align: center; }
  #a6 .section-label::before { display: block; margin: 0 auto 12px; }
  #a6 .lead { margin-left: auto; margin-right: auto; }
  #a6 .a6-legend { justify-items: center; text-align: center; gap: 12px 18px; }
  #a6 .a6-legend div { font-size: 10.5px; letter-spacing: .12em; }
  /* orbit block itself perfectly centered with even breathing room */
  #a6 .a6-orbit-wrap { margin-top: 30px; }
  #a6 .a6-orbit { width: calc(100% - 96px); }
  /* side labels: equal offset both sides, vertically centered on the icon */
  .a6-node.pos2 .a6-node-label, .a6-node.pos3 .a6-node-label { left: calc(100% + 8px); }
  .a6-node.pos5 .a6-node-label, .a6-node.pos6 .a6-node-label { right: calc(100% + 8px); }
}

/* ============ Entry preloader: ink screen, lion fades in ============ */
.preloader { position: fixed; inset: 0; z-index: 1000; background: var(--black); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; animation: plOut .8s ease 1.55s forwards; }
.preloader img { height: 92px; opacity: 0; transform: scale(.9); animation: plIn 1.1s cubic-bezier(.22,.6,.2,1) .2s forwards; filter: drop-shadow(0 0 26px rgba(169,133,82,.35)); }
.preloader::after { content: ""; width: 0; height: 1px; background: var(--gold); opacity: .8; animation: plLine 1s ease .55s forwards; }
@keyframes plIn { to { opacity: 1; transform: none; } }
@keyframes plLine { to { width: 120px; } }
@keyframes plOut { to { opacity: 0; visibility: hidden; } }
.preloader.skip { display: none; }
@media (prefers-reduced-motion: reduce) { .preloader { display: none; } }
/* hero title waits behind the curtain, rises as it lifts */
body.preloading .hero h1 .w { animation-play-state: paused; }


/* ============ Signature testimonial band ============ */
.testimonial-band { padding: 110px 0; }
.testimonial-band blockquote { font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: clamp(24px, 3.4vw, 40px); line-height: 1.45; color: var(--white); max-width: 900px; margin: 0 auto; text-align: center; }
.testimonial-band blockquote::before { content: "\201C"; display: block; font-size: 68px; line-height: .4; color: var(--gold); margin-bottom: 26px; }
.testimonial-band cite { display: block; text-align: center; margin-top: 34px; font-style: normal; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
