/* ============================================
   FOUNDATIONS
   ============================================ */
    :root {
      --obsidian: #0E0E0C;
      --charcoal: #1A1A17;
      --charcoal-2: #22221E;
      --cream: #F4EDE0;
      --cream-soft: #EAE3D2;
      --paper: #FAF6EE;
      --gold: #B08D57;
      --gold-bright: #C9A36B;
      --gold-deep: #8E6E3F;
      --muted: #6B6660;
      --muted-light: #8A857E;
      --hairline: rgba(176, 141, 87, 0.22);
      --hairline-light: rgba(14, 14, 12, 0.10);

      --sans: 'Fraunces', 'Georgia', serif;
      --sans: 'Manrope', system-ui, -apple-system, sans-serif;

      --maxw: 1280px;
      --gutter: clamp(1.5rem, 8vw, 3rem);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--sans);
      font-weight: 400;
      font-size: 16px;
      line-height: 1.6;
      color: var(--obsidian);
      background: var(--paper);
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

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

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    .grain {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      opacity: 0.04;
      mix-blend-mode: overlay;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* ============================================
   TYPE
   ============================================ */
    .eyebrow {
      font-family: var(--sans);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
    }

    .eyebrow::before {
      content: '';
      display: inline-block;
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .eyebrow--center {
      justify-content: center;
    }

    .h2 {
      font-family: var(--sans);
      font-weight: 300;
      font-size: clamp(2rem, 4.4vw, 3.6rem);
      line-height: 1.08;
      letter-spacing: -0.014em;
    }

    .h2 em {
      font-style: italic;
      color: var(--gold);
    }

    .h2--light em {
      color: var(--gold-bright);
    }

    .h3 {
      font-family: var(--sans);
      font-weight: 400;
      font-size: clamp(1.35rem, 2vw, 1.65rem);
      line-height: 1.25;
      letter-spacing: -0.005em;
    }

    .lead {
      font-size: clamp(1.05rem, 1.3vw, 1.2rem);
      line-height: 1.6;
      color: var(--muted);
      font-weight: 400;
      max-width: 56ch;
    }

    /* ============================================
   LAYOUT
   ============================================ */
    .container {
      max-width: var(--maxw);
      margin: 0 auto;
      padding-left: var(--gutter);
      padding-right: var(--gutter);
      position: relative;
      z-index: 2;
    }

    .section {
      padding: clamp(3.25rem, 6vw, 5.5rem) 0;
      position: relative;
    }

    .section--dark {
      background: var(--obsidian);
      color: var(--cream);
    }

    .section--dark .lead {
      color: rgba(244, 237, 224, 0.65);
    }

    .section--cream {
      background: var(--cream);
    }

    .section-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 5rem;
    }

    .section-header h2 {
      margin-top: 1.5rem;
    }

    .section-header .lead {
      margin: 1.5rem auto 0;
    }

    .ornament {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin: 0 auto;
      width: 100%;
      max-width: 180px;
    }

    .ornament::before,
    .ornament::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--hairline);
    }

    .ornament__dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      transform: rotate(45deg);
    }

    /* ============================================
   BUTTONS
   ============================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      padding: 1.05rem 1.85rem;
      font-family: var(--sans);
      font-size: 0.86rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      cursor: pointer;
      position: relative;
      border: 1px solid transparent;
      border-radius: 6px;
    }

    .btn--primary {
      background: var(--gold);
      color: var(--obsidian);
    }

    .btn--primary:hover {
      background: var(--gold-bright);
      transform: translateY(-1px);
      box-shadow: 0 12px 32px -12px rgba(176, 141, 87, 0.5);
    }

    .btn--ghost {
      background: transparent;
      color: var(--cream);
      border-color: rgba(244, 237, 224, 0.25);
    }

    .btn--ghost:hover {
      border-color: var(--gold);
      color: var(--gold-bright);
    }

    .btn__arrow {
      display: inline-block;
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .btn:hover .btn__arrow {
      transform: translateX(4px);
    }

    .link-arrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.99rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--gold);
      padding-bottom: 4px;
      border-bottom: 1px solid var(--hairline);
      transition: all 0.3s ease;
    }

    .link-arrow:hover {
      color: var(--gold-bright);
      border-bottom-color: var(--gold-bright);
    }

    /* ============================================
   NAVIGATION
   ============================================ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1.4rem 0;
      transition: all 0.4s ease;
      background: rgba(14, 14, 12, 0.0);
    }

    .nav.scrolled {
      background: rgba(14, 14, 12, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 0.9rem 0;
      border-bottom: 1px solid rgba(176, 141, 87, 0.12);
    }

    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      color: var(--cream);
    }

    .brand__mark {
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .brand__mark img,
    .brand__mark svg {
      height: 100%;
      width: auto;
      display: block;
    }

    .brand__name {
      font-family: var(--sans);
      font-size: 1.3rem;
      font-weight: 400;
      letter-spacing: 0.04em;
    }

    .nav__links {
      display: flex;
      gap: 2.4rem;
      list-style: none;
    }

    .nav__links a {
      color: rgba(244, 237, 224, 0.78);
      font-size: 1rem;
      font-weight: 400;
      transition: color 0.3s ease;
    }

    .nav__links a:hover {
      color: var(--gold-bright);
    }

    .nav__cta {
      font-size: 0.78rem;
      padding: 0.75rem 1.3rem;
    }

    .nav__toggle {
      display: none;
    }

    /* ============================================
   MOBILE SLIDE-OUT MENU
   ============================================ */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      height: 100%;
      width: min(82vw, 360px);
      background: var(--obsidian);
      border-left: 1px solid var(--hairline);
      box-shadow: -30px 0 60px -30px rgba(0, 0, 0, 0.6);
      transform: translateX(100%);
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.5s;
      z-index: 110;
      display: flex;
      flex-direction: column;
      padding: 6.5rem 2.2rem 2.4rem;
      visibility: hidden;
    }

    body.menu-open .mobile-menu {
      transform: translateX(0);
      visibility: visible;
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
    }

    .mobile-menu__close {
      position: absolute;
      top: 1.7rem;
      right: 2rem;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .mobile-menu__close span {
      position: absolute;
      width: 22px;
      height: 1px;
      background: var(--cream);
      transition: background 0.3s ease;
    }

    .mobile-menu__close span:nth-child(1) {
      transform: rotate(45deg);
    }

    .mobile-menu__close span:nth-child(2) {
      transform: rotate(-45deg);
    }

    .mobile-menu__close:hover span {
      background: var(--gold-bright);
    }

    .mobile-menu__links {
      list-style: none;
      display: flex;
      flex-direction: column;
      margin-bottom: 2rem;
    }

    .mobile-menu__links li {
      border-bottom: 1px solid rgba(176, 141, 87, 0.16);
    }

    .mobile-menu__links a {
      display: block;
      padding: 1.15rem 0;
      color: var(--cream);
      font-size: 1.15rem;
      letter-spacing: 0.01em;
      transition: color 0.3s ease;
    }

    .mobile-menu__links a:hover {
      color: var(--gold-bright);
    }

    .mobile-menu__cta {
      justify-content: center;
      margin-top: auto;
    }

    .mobile-menu__backdrop {
      position: fixed;
      inset: 0;
      background: rgba(14, 14, 12, 0.5);
      -webkit-backdrop-filter: blur(2px);
      backdrop-filter: blur(2px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease;
      z-index: 105;
    }

    body.menu-open .mobile-menu__backdrop {
      opacity: 1;
      visibility: visible;
    }

    /* ============================================
   HERO
   ============================================ */
    .hero {
      min-height: 100vh;
      background: var(--obsidian);
      color: var(--cream);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 8rem 0 4rem;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 90vw;
      height: 90vh;
      background: radial-gradient(ellipse at center, rgba(176, 141, 87, 0.12) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 200px;
      background: linear-gradient(to bottom, transparent, rgba(14, 14, 12, 0.6));
      pointer-events: none;
    }

    .hero__inner {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
    }

    .hero__kicker {
      font-family: var(--sans);
      font-size: 0.78rem;
      letter-spacing: 0.46em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--gold);
      margin-top: 40px;
      margin-bottom: 2.2rem;
      opacity: 0;
      animation: fadeUp 1s 0.2s forwards;
    }

    .hero__kicker span {
      color: var(--gold-bright);
      margin: 0 0.4em;
    }

    .hero h1 {
      font-family: var(--sans);
      font-weight: 300;
      font-size: clamp(2.8rem, 7.4vw, 6.2rem);
      line-height: 0.98;
      letter-spacing: -0.022em;
      margin-bottom: 2rem;
      color: var(--cream);
    }

    .hero h1 .line {
      display: block;
      opacity: 0;
      animation: fadeUp 1.1s forwards;
    }

    .hero h1 .line:nth-child(1) {
      animation-delay: 0.35s;
    }

    .hero h1 .line:nth-child(2) {
      animation-delay: 0.5s;
    }

    .hero h1 .line:nth-child(3) {
      animation-delay: 0.65s;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-bright);
      font-weight: 300;
    }

    .hero__sub {
      font-size: clamp(1.05rem, 1.45vw, 1.25rem);
      line-height: 1.55;
      color: rgba(244, 237, 224, 0.72);
      max-width: 620px;
      margin: 0 auto 2.8rem;
      opacity: 0;
      animation: fadeUp 1.1s 0.85s forwards;
    }

    .hero__cta {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 4rem;
      opacity: 0;
      animation: fadeUp 1.1s 1s forwards;
    }

    .hero__cta .btn--ghost {
      background: transparent;
    }

    .hero__trust {
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(244, 237, 224, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      opacity: 0;
      animation: fadeUp 1.1s 1.15s forwards;
    }

    .hero__trust-dot {
      width: 4px;
      height: 4px;
      background: var(--gold);
      border-radius: 50%;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }

      from {
        opacity: 0;
        transform: translateY(18px);
      }
    }

    /* ============================================
   AUTHORITY
   ============================================ */
    .authority {
      background: var(--obsidian);
      color: var(--cream);
      padding: 2.4rem 0;
      border-top: 1px solid rgba(176, 141, 87, 0.18);
      border-bottom: 1px solid rgba(176, 141, 87, 0.18);
    }

    .authority__inner {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
      align-items: center;
    }

    .authority__item {
      text-align: center;
      position: relative;
      padding: 0.3rem 0;
    }

    .authority__item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 30px;
      background: var(--hairline);
    }

    .authority__num {
      font-family: var(--sans);
      font-weight: 300;
      font-size: 1.6rem;
      color: var(--gold-bright);
      letter-spacing: -0.01em;
      display: block;
      line-height: 1;
      margin-bottom: 0.45rem;
    }

    .authority__label {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(244, 237, 224, 0.6);
      font-weight: 500;
    }

    /* ============================================
   BUILD. BRAND. BELONG.
   ============================================ */
    .pillars {
      background: var(--obsidian);
      color: var(--cream);
      padding: clamp(4rem, 8vw, 7rem) 0;
      border-bottom: 1px solid rgba(176, 141, 87, 0.12);
    }

    .pillars__intro {
      text-align: center;
      margin-bottom: 4.5rem;
    }

    .pillars__motto {
      font-family: var(--sans);
      font-weight: 300;
      font-size: clamp(2rem, 4.6vw, 3.8rem);
      line-height: 1;
      letter-spacing: 0.04em;
      color: var(--cream);
      margin-top: 1.5rem;
    }

    .pillars__motto .sep {
      display: inline-block;
      color: var(--gold);
      margin: 0 0.5rem;
      font-style: italic;
      font-weight: 300;
    }

    .pillars__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid rgba(176, 141, 87, 0.18);
    }

    .pillar {
      padding: clamp(2.2rem, 3.6vw, 3.2rem) clamp(1.5rem, 3vw, 2.5rem);
      border-right: 1px solid rgba(176, 141, 87, 0.18);
      position: relative;
    }

    .pillar:last-child {
      border-right: none;
    }

    .pillar__num {
      font-family: var(--sans);
      font-style: italic;
      font-weight: 300;
      font-size: 1.1rem;
      color: var(--gold);
      margin-bottom: 1.8rem;
      display: block;
    }

    .pillar h3 {
      font-family: var(--sans);
      font-weight: 400;
      font-size: 1.8rem;
      color: var(--gold);
      margin-bottom: 1rem;
      letter-spacing: -0.005em;
    }

    .pillar p {
      font-size: 0.97rem;
      color: rgba(244, 237, 224, 0.68);
      line-height: 1.65;
      max-width: 32ch;
    }

    /* ============================================
   PROBLEM / SOLUTION
   ============================================ */
    .contrast {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      position: relative;
    }

    .contrast::after {
      content: '';
      position: absolute;
      top: 12%;
      bottom: 12%;
      left: 50%;
      width: 1px;
      background: var(--hairline);
    }

    .contrast__side {
      padding: 0 clamp(1.5rem, 3vw, 3.5rem);
    }

    .contrast__side--problem {
      padding-right: clamp(2rem, 4vw, 4.5rem);
    }

    .contrast__side--solution {
      padding-left: clamp(2rem, 4vw, 4.5rem);
    }

    .contrast__eyebrow {
      margin-bottom: 1.5rem;
    }

    .contrast__heading {
      font-family: var(--sans);
      font-weight: 300;
      font-size: clamp(1.7rem, 3vw, 2.6rem);
      line-height: 1.12;
      margin-bottom: 1.5rem;
      letter-spacing: -0.012em;
      color: var(--cream);
    }

    .contrast__list {
      list-style: none;
      margin-top: 2rem;
    }

    .contrast__list li {
      padding: 1.1rem 0;
      border-bottom: 1px solid rgba(244, 237, 224, 0.08);
      font-size: 1.02rem;
      color: rgba(244, 237, 224, 0.68);
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .contrast__list--problem li {
      text-decoration: line-through;
      text-decoration-color: rgba(176, 141, 87, 0.4);
      text-decoration-thickness: 1px;
      color: rgba(244, 237, 224, 0.45);
    }

    .contrast__list--problem li::before {
      content: '×';
      color: var(--muted-light);
      font-size: 1.1rem;
    }

    .contrast__list--solution li {
      color: rgba(244, 237, 224, 0.88);
    }

    .contrast__list--solution li::before {
      content: '';
      display: inline-block;
      width: 14px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .contrast__solution-heading em {
      font-style: italic;
      color: var(--gold-bright);
    }

    /* ============================================
   FEATURES
   ============================================ */
    .features__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid var(--hairline);
      border-left: 1px solid var(--hairline);
    }

    .feature {
      padding: clamp(2rem, 3.5vw, 3.2rem) clamp(1.75rem, 3vw, 2.6rem);
      border-right: 1px solid var(--hairline);
      border-bottom: 1px solid var(--hairline);
      position: relative;
      transition: background 0.4s ease;
    }

    .feature:hover {
      background: rgba(176, 141, 87, 0.04);
    }

    .feature__icon {
      width: 36px;
      height: 36px;
      margin-bottom: 2rem;
      stroke: var(--gold);
      stroke-width: 1.2;
      fill: none;
    }

    .feature__num {
      position: absolute;
      top: clamp(1.5rem, 2.5vw, 2.4rem);
      right: clamp(1.75rem, 3vw, 2.6rem);
      font-family: var(--sans);
      font-style: italic;
      font-weight: 300;
      color: var(--gold);
      opacity: 0.5;
      font-size: 0.95rem;
    }

    .feature h3 {
      margin-bottom: 0.9rem;
      color: var(--obsidian);
    }

    .feature p {
      color: var(--muted);
      font-size: 0.97rem;
      line-height: 1.65;
    }

    /* ============================================
   THEME SHOWCASES
   ============================================ */
    .themes {
      background: var(--cream);
    }

    .themes__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .theme {
      background: var(--paper);
      border: 1px solid var(--hairline);
      border-radius: 6px;
      overflow: hidden;
      transition: all 0.4s ease;
      display: flex;
      flex-direction: column;
    }

    .theme:hover {
      border-color: var(--gold);
      transform: translateY(-3px);
    }

    .theme__visual {
      height: 360px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2.5rem 2rem 0;
    }

    .theme__visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.07), transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.22), transparent 60%);
      pointer-events: none;
      z-index: 1;
    }

    .theme--wellness .theme__visual {
      background: linear-gradient(135deg, #8B9B8B 0%, #4A5A4A 100%);
    }

    .theme--fitness .theme__visual {
      background: linear-gradient(135deg, #2A2A28 0%, #5A2828 100%);
    }

    .theme--cooking .theme__visual {
      background: linear-gradient(135deg, #3D2817 0%, #1A0F08 100%);
    }

    .theme--academic .theme__visual {
      background: linear-gradient(135deg, #1E2B3A 0%, #0E1620 100%);
    }

    .theme__label {
      font-family: var(--sans);
      font-style: italic;
      font-weight: 300;
      font-size: clamp(2rem, 3.6vw, 3.2rem);
      color: rgba(244, 237, 224, 0.92);
      letter-spacing: -0.01em;
      text-align: center;
      position: relative;
      z-index: 2;
      line-height: 1.05;
      padding: 0 2rem;
    }

    .theme__label small {
      display: block;
      font-family: var(--sans);
      font-style: normal;
      font-weight: 500;
      font-size: 0.7rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold-bright);
      margin-bottom: 1.2rem;
    }

    .theme__body {
      padding: 2rem 2.2rem 2.2rem;
    }

    .theme__category {
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
      font-weight: 500;
    }

    .theme__body h3 {
      margin-bottom: 0.8rem;
    }

    .theme__body p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .themes__footer {
      text-align: center;
      margin-top: 4rem;
    }

    .themes__footer p {
      font-family: var(--sans);
      font-style: italic;
      font-weight: 300;
      font-size: 1.25rem;
      color: var(--obsidian);
      margin-bottom: 1.5rem;
    }

    /* ============================================
   INDUSTRIES
   ============================================ */
    .industries {
      background: var(--obsidian);
      color: var(--cream);
    }

    .industries__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid rgba(176, 141, 87, 0.18);
    }

    .industry {
      padding: 2.2rem 2rem;
      border-bottom: 1px solid rgba(176, 141, 87, 0.18);
      border-right: 1px solid rgba(176, 141, 87, 0.18);
      display: flex;
      align-items: center;
      gap: 1.3rem;
      transition: background 0.4s ease;
    }

    .industry:nth-child(3n) {
      border-right: none;
    }

    .industry:nth-last-child(-n+3) {
      border-bottom: none;
    }

    .industry:hover {
      background: rgba(176, 141, 87, 0.05);
    }

    .industry__num {
      font-family: var(--sans);
      font-style: italic;
      font-weight: 300;
      color: var(--gold);
      font-size: 1rem;
      width: 40px;
    }

    .industry__name {
      font-family: var(--sans);
      font-weight: 400;
      font-size: 1.25rem;
      color: var(--cream);
      letter-spacing: -0.005em;
    }

    /* ============================================
   HOW IT WORKS
   ============================================ */
    .how {
      background: var(--cream);
    }

    .how__steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(2rem, 4vw, 4rem);
      position: relative;
    }

    .step {
      text-align: center;
      position: relative;
    }

    .step__num {
      font-family: var(--sans);
      font-weight: 300;
      font-style: italic;
      font-size: 3.5rem;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 2rem;
      background: var(--cream);
      display: inline-block;
      padding: 0 1.5rem;
      position: relative;
      z-index: 2;
    }

    .step h3 {
      font-family: var(--sans);
      font-weight: 400;
      font-size: 2.4rem;
      margin-bottom: 1rem;
      letter-spacing: -0.005em;
      color: var(--obsidian);
    }

    .step__eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
      font-weight: 500;
    }

    .step p {
      color: var(--muted);
      max-width: 32ch;
      margin: 0 auto;
      font-size: 0.97rem;
      line-height: 1.65;
    }

    /* ============================================
   INVESTMENT — 4 PLANS
   ============================================ */
    .invest {
      background: var(--obsidian);
      color: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .invest::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(176, 141, 87, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .invest .section-header {
      position: relative;
      z-index: 2;
    }

    .invest h2 {
      color: var(--cream);
    }

    .invest__plans {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
      position: relative;
      z-index: 2;
      margin-bottom: 3.5rem;
    }

    .plan {
      padding: 2.2rem 1.7rem;
      border: 1px solid rgba(176, 141, 87, 0.22);
      border-radius: 6px;
      background: rgba(244, 237, 224, 0.02);
      transition: all 0.4s ease;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .plan:hover {
      border-color: rgba(176, 141, 87, 0.55);
      background: rgba(244, 237, 224, 0.035);
      transform: translateY(-3px);
    }

    .plan--feature {
      border-color: var(--gold);
      background: rgba(176, 141, 87, 0.06);
    }

    .plan__badge {
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--obsidian);
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 0.3rem 0.85rem;
      white-space: nowrap;
    }

    .plan__name {
      font-family: var(--sans);
      font-weight: 400;
      font-size: 1.45rem;
      margin-bottom: 0.4rem;
      color: var(--cream);
      letter-spacing: -0.005em;
    }

    .plan__sub {
      font-family: var(--sans);
      font-style: italic;
      font-weight: 300;
      font-size: 0.95rem;
      color: var(--gold-bright);
      margin-bottom: 1.2rem;
      line-height: 1.3;
    }

    .plan__for {
      font-size: 0.85rem;
      line-height: 1.5;
      color: rgba(244, 237, 224, 0.62);
      margin-bottom: 1.6rem;
      padding-bottom: 1.4rem;
      border-bottom: 1px solid rgba(244, 237, 224, 0.08);
      min-height: 5.5rem;
    }

    .plan__lines {
      list-style: none;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }

    .plan__lines li {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 0.6rem 0;
      border-bottom: 1px solid rgba(244, 237, 224, 0.06);
      font-size: 0.85rem;
      gap: 0.5rem;
    }

    .plan__lines li:last-child {
      border-bottom: none;
    }

    .plan__line-label {
      color: rgba(244, 237, 224, 0.65);
      font-size: 0.78rem;
    }

    .plan__line-value {
      font-family: var(--sans);
      font-weight: 400;
      color: var(--gold-bright);
      font-size: 0.95rem;
      white-space: nowrap;
    }

    .plan__cta {
      font-size: 0.74rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--gold);
      padding-top: 0.6rem;
      border-top: 1px solid var(--hairline);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.3s ease;
    }

    .plan__cta:hover {
      color: var(--gold-bright);
    }

    .invest__footer {
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .invest__note {
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      color: rgba(244, 237, 224, 0.5);
      margin-top: 2.2rem;
      font-family: var(--sans);
      font-style: italic;
      font-weight: 300;
    }

    /* ---- Investment · C1 layout (price headline + Enterprise + Bespoke band) ---- */
    .plan__price {
      margin: 0.2rem 0 1.3rem;
      padding-bottom: 1.3rem;
      border-bottom: 1px solid rgba(244, 237, 224, 0.1);
      display: flex;
      align-items: baseline;
      gap: 0.45rem;
    }

    .plan__price-amount {
      font-family: var(--sans);
      font-weight: 300;
      font-size: 2.4rem;
      letter-spacing: -0.02em;
      line-height: 1;
      color: var(--cream);
    }

    .plan__price--talk {
      font-family: var(--sans);
      font-style: italic;
      font-weight: 300;
      font-size: 1.75rem;
      line-height: 1;
      color: var(--cream);
    }

    .plan__price-unit {
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 500;
      color: rgba(244, 237, 224, 0.55);
    }

    .plan--enterprise {
      border-color: var(--gold);
      background: rgba(176, 141, 87, 0.06);
    }

    .plan__highlights {
      list-style: none;
      flex-grow: 1;
      margin-bottom: 1.5rem;
    }

    .plan__highlights li {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      padding: 0.55rem 0;
      border-bottom: 1px solid rgba(244, 237, 224, 0.06);
      font-size: 0.85rem;
      color: rgba(244, 237, 224, 0.85);
    }

    .plan__highlights li:last-child {
      border-bottom: none;
    }

    .plan__hl-dash {
      width: 13px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .plan__hl-note {
      color: rgba(244, 237, 224, 0.6);
      line-height: 1.5;
      padding-top: 0.7rem;
    }

    .plan__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 0.9rem 1.4rem;
      border-radius: 6px;
      font-size: 0.74rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--obsidian);
      border: 1px solid transparent;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .plan__btn:hover {
      background: var(--gold-bright);
      transform: translateY(-1px);
    }

    .plan__btn--ghost {
      background: transparent;
      color: var(--gold-bright);
      border-color: rgba(176, 141, 87, 0.42);
    }

    .plan__btn--ghost:hover {
      background: rgba(244, 237, 224, 0.045);
      transform: translateY(-1px);
    }

    .bespoke-band {
      position: relative;
      z-index: 2;
      border: 1px solid rgba(176, 141, 87, 0.42);
      border-radius: 8px;
      padding: 1.8rem 2.2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
      background: rgba(244, 237, 224, 0.02);
    }

    .bespoke-band__head {
      display: flex;
      align-items: center;
      gap: 1.6rem;
      flex-wrap: wrap;
    }

    .bespoke-band__name {
      font-family: var(--sans);
      font-weight: 400;
      font-size: 1.25rem;
      color: var(--gold-bright);
    }

    .bespoke-band__copy {
      font-size: 0.9rem;
      color: rgba(244, 237, 224, 0.66);
      line-height: 1.5;
      max-width: 58ch;
    }

    .bespoke-band__cta {
      font-size: 0.74rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      white-space: nowrap;
      transition: color 0.3s ease;
    }

    .bespoke-band__cta:hover {
      color: var(--gold-bright);
    }

    /* ============================================
   SOCIAL PROOF
   ============================================ */
    .proof {
      background: var(--paper);
    }

    .proof__quote {
      text-align: center;
      max-width: 920px;
      margin: 0 auto 5rem;
      position: relative;
    }

    .proof__quote::before {
      content: '"';
      position: absolute;
      top: -90px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--sans);
      font-weight: 300;
      font-size: 11rem;
      line-height: 1;
      color: var(--gold);
      opacity: 0.18;
      pointer-events: none;
    }

    .proof__quote blockquote {
      font-family: var(--sans);
      font-weight: 300;
      font-size: clamp(1.5rem, 3.2vw, 2.4rem);
      line-height: 1.25;
      letter-spacing: -0.012em;
      color: var(--obsidian);
      margin-bottom: 2rem;
      position: relative;
      z-index: 2;
    }

    .proof__quote blockquote em {
      font-style: italic;
      color: var(--gold);
    }

    .proof__attr {
      font-size: 0.82rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 500;
    }

    .proof__attr span {
      color: var(--gold);
      margin: 0 0.6rem;
    }

    /* Slider */
    .proof__slider {
      position: relative;
      max-width: 1100px;
      margin: 0 auto 5rem;
      padding: 0 4rem;
    }

    .proof__viewport {
      overflow: hidden;
      position: relative;
    }

    .proof__track {
      display: flex;
      transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }

    .proof__slide {
      flex: 0 0 100%;
      min-width: 0;
      text-align: center;
      padding: 0 1rem;
      position: relative;
    }

    .proof__slide blockquote {
      font-family: var(--sans);
      font-weight: 300;
      font-size: clamp(1.4rem, 2.8vw, 2.2rem);
      line-height: 1.3;
      letter-spacing: -0.012em;
      color: var(--obsidian);
      margin-bottom: 2rem;
      position: relative;
      z-index: 2;
    }

    .proof__slide blockquote em {
      font-style: italic;
      color: var(--gold);
    }

    .proof__slide:not(.is-active) {
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .proof__slide.is-active {
      opacity: 1;
      transition: opacity 0.7s ease 0.15s;
    }

    .proof__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: transparent;
      color: var(--muted);
      border: 1px solid var(--hairline);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
      z-index: 3;
    }

    .proof__nav:hover {
      color: var(--gold);
      border-color: var(--gold);
      background: rgba(176, 141, 87, 0.06);
    }

    .proof__nav svg {
      width: 18px;
      height: 18px;
    }

    .proof__nav--prev {
      left: 0;
    }

    .proof__nav--next {
      right: 0;
    }

    .proof__dots {
      display: flex;
      justify-content: center;
      gap: 0.7rem;
      margin-top: 2.4rem;
    }

    .proof__dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--hairline);
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
    }

    .proof__dot:hover {
      background: var(--gold-bright);
    }

    .proof__dot.is-active {
      background: var(--gold);
      width: 22px;
      border-radius: 3px;
    }

    @media (max-width: 760px) {
      .proof__slider {
        padding: 0 2.6rem;
      }

      .proof__nav {
        width: 36px;
        height: 36px;
      }

      .proof__nav svg {
        width: 14px;
        height: 14px;
      }
    }

    .cases {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 4rem;
    }

    /* Case study — split editorial */
    .case-study {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: clamp(2.5rem, 5vw, 4.5rem);
      align-items: center;
      max-width: 1180px;
      margin: 4rem auto 0;
    }

    .case-study__visual {
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 30px 60px -30px rgba(14, 14, 12, 0.4);
      will-change: transform;
    }

    .case-study__visual img {
      width: 100%;
      height: auto;
      display: block;
    }

    .case-study__title {
      font-family: var(--sans);
      font-weight: 400;
      font-size: clamp(2rem, 4vw, 2.8rem);
      letter-spacing: -0.02em;
      line-height: 1.05;
      margin: 1.5rem 0;
    }

    .case-study__title em {
      font-style: italic;
      color: var(--gold);
    }

    .case-study__body .lead {
      margin-bottom: 2rem;
    }

    .case-study__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-bottom: 2.5rem;
    }

    .case-study__chip {
      font-size: 0.78rem;
      letter-spacing: 0.04em;
      color: var(--obsidian);
      border: 1px solid var(--hairline);
      border-radius: 999px;
      padding: 0.5rem 1.1rem;
      background: rgba(176, 141, 87, 0.05);
    }

    .cases--single {
      grid-template-columns: minmax(0, 1100px);
      justify-content: center;
    }

    .cases--single .case {
      padding: 1rem;
    }

    .case--placeholder {
      text-align: center;
    }

    .case--placeholder .case__visual {
      margin-left: auto;
      margin-right: auto;
    }

    .case__placeholder-note {
      color: var(--muted);
      font-style: italic;
      margin-top: 1rem;
    }

    .case {
      background: var(--cream);
      padding: 2.2rem;
      margin-bottom: 1.5rem;
      overflow: hidden;
      border: 1px solid var(--hairline);
      border-radius: 6px;
      transition: all 0.4s ease;
    }

    .case:hover {
      border-color: var(--gold);
      transform: translateY(-3px);
    }

    .case__category {
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      font-weight: 500;
    }

    .case__visual {
      height: 160px;
      background: linear-gradient(135deg, var(--obsidian) 0%, var(--charcoal-2) 100%);
      position: relative;
      margin-bottom: 1.5rem;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .case__visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 70% 30%, rgba(176, 141, 87, 0.18), transparent 60%);
    }

    .case__visual-brand {
      font-family: var(--sans);
      font-style: italic;
      font-weight: 300;
      color: var(--gold-bright);
      font-size: 1.5rem;
      position: relative;
      z-index: 2;
      letter-spacing: -0.005em;
    }

    .case h3 {
      margin-bottom: 0.8rem;
    }

    .case p {
      font-size: 0.93rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .case__metric {
      display: flex;
      gap: 2rem;
      border-top: 1px solid var(--hairline);
      padding-top: 1.2rem;
    }

    .case__metric-num {
      font-family: var(--sans);
      font-weight: 300;
      font-size: 1.6rem;
      color: var(--obsidian);
      line-height: 1;
      display: block;
    }

    .case__metric-label {
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 0.4rem;
    }

    /* ============================================
   FAQ
   ============================================ */
    .faq {
      background: var(--cream);
    }

    .faq__layout {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: clamp(2rem, 6vw, 6rem);
      align-items: start;
    }

    .faq__intro h2 {
      margin-bottom: 1.5rem;
    }

    .faq__intro .lead {
      margin-bottom: 2rem;
    }

    .faq__list {
      border-top: 1px solid var(--hairline-light);
    }

    .faq__item {
      border-bottom: 1px solid var(--hairline-light);
      padding: 1.6rem 0;
      cursor: pointer;
    }

    .faq__q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      font-family: var(--sans);
      font-weight: 400;
      font-size: 1.2rem;
      color: var(--obsidian);
      letter-spacing: -0.005em;
    }

    .faq__toggle {
      width: 28px;
      height: 28px;
      position: relative;
      flex-shrink: 0;
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .faq__toggle::before,
    .faq__toggle::after {
      content: '';
      position: absolute;
      background: var(--gold);
      left: 50%;
      top: 50%;
    }

    .faq__toggle::before {
      width: 14px;
      height: 1px;
      transform: translate(-50%, -50%);
    }

    .faq__toggle::after {
      width: 1px;
      height: 14px;
      transform: translate(-50%, -50%);
      transition: opacity 0.3s ease;
    }

    .faq__item.open .faq__toggle::after {
      opacity: 0;
    }

    .faq__a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.65;
      padding-right: 3rem;
    }

    .faq__item.open .faq__a {
      max-height: 260px;
      padding-top: 1rem;
    }

    /* ============================================
   FINAL CTA
   ============================================ */
    .final {
      background: var(--obsidian);
      color: var(--cream);
      position: relative;
      overflow: hidden;
      padding: clamp(6rem, 12vw, 11rem) 0;
      text-align: center;
    }

    .final::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 20%, rgba(176, 141, 87, 0.10), transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(176, 141, 87, 0.08), transparent 50%);
    }

    .final__inner {
      max-width: 920px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .final__motto {
      font-family: var(--sans);
      font-size: 0.78rem;
      letter-spacing: 0.46em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--gold);
      margin-bottom: 2rem;
    }

    .final__motto span {
      color: var(--gold-bright);
      margin: 0 0.4em;
    }

    .final h2 {
      /*font-size: clamp(2.4rem, 5.4vw, 4.4rem);
      color: var(--cream);
      margin: 0 0 1.5rem;
      letter-spacing: -0.02em;*/
      font-family: var(--sans);
      font-weight: 300;
      font-size: clamp(2rem, 4.4vw, 3.6rem);
      line-height: 1.08;
      letter-spacing: -0.014em;
    }

    .final h2 em {
      color: var(--gold-bright);
      font-style: italic;
    }

    .final .lead {
      color: rgba(244, 237, 224, 0.7);
      margin: 0 auto 2.8rem;
      font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    }

    .final__signature {
      font-family: var(--sans);
      font-style: italic;
      font-weight: 300;
      color: rgba(244, 237, 224, 0.4);
      margin-top: 3rem;
      font-size: 0.95rem;
    }

    /* ============================================
   FOOTER
   ============================================ */
    .footer {
      background: var(--obsidian);
      color: rgba(244, 237, 224, 0.6);
      padding: 4rem 0 2.5rem;
      border-top: 1px solid rgba(176, 141, 87, 0.15);
    }

    .footer__top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3.5rem;
    }

    .footer__brand {
      color: var(--cream);
    }

    .footer__brand p {
      font-size: 0.92rem;
      line-height: 1.6;
      margin-top: 1rem;
      max-width: 30ch;
      color: rgba(244, 237, 224, 0.55);
    }

    .footer__heading {
      font-family: var(--sans);
      font-size: 0.7rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
      font-weight: 500;
    }

    .footer__list {
      list-style: none;
    }

    .footer__list li {
      margin-bottom: 0.7rem;
    }

    .footer__list a {
      font-size: 0.92rem;
      color: rgba(244, 237, 224, 0.65);
      transition: color 0.3s ease;
    }

    .footer__list a:hover {
      color: var(--gold-bright);
    }


    /* Footer social row */
    .footer__social {
      display: flex;
      gap: 0.9rem;
      align-items: center;
      margin-top: 1.1rem;
    }

    .footer__social a {
      width: 34px;
      height: 34px;
      border: 1px solid var(--hairline);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .footer__social a:hover {
      color: var(--gold-bright);
      border-color: var(--gold);
      transform: translateY(-1px);
    }

    .footer__social svg {
      width: 16px;
      height: 16px;
      display: block;
    }

    .footer__bottom {
      border-top: 1px solid rgba(244, 237, 224, 0.08);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
      color: rgba(244, 237, 224, 0.4);
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer__legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .footer__legal a {
      transition: color 0.2s ease;
    }

    .footer__legal a:hover {
      color: var(--gold-bright);
    }

    /* ============================================
   DEVICE MOCKUPS
   ============================================ */
    .mockup-laptop {
      width: 100%;
      position: relative;
      filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
    }

    .mockup-laptop__chassis {
      background: linear-gradient(180deg, #2a2a28 0%, #1a1a17 100%);
      border-radius: 10px 10px 4px 4px;
      padding: 10px 10px 12px;
      position: relative;
    }

    .mockup-laptop__chassis::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 10px 10px 4px 4px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      pointer-events: none;
    }

    .mockup-laptop__screen {
      aspect-ratio: 16/10;
      background: #0a0a08;
      border-radius: 3px;
      overflow: hidden;
      position: relative;
    }

    .mockup-laptop__base {
      height: 7px;
      background: linear-gradient(180deg, #20201d 0%, #0a0a08 100%);
      margin: 1px -3.5% 0;
      border-radius: 0 0 14px 14px;
      position: relative;
    }

    .mockup-laptop__base::after {
      content: '';
      position: absolute;
      top: 0;
      left: 40%;
      right: 40%;
      height: 3px;
      background: #050504;
      border-radius: 0 0 4px 4px;
    }

    .mockup-phone {
      width: 100%;
      aspect-ratio: 9/19;
      background: #0a0a08;
      border-radius: 22px;
      padding: 5px;
      filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.4));
      position: relative;
    }

    .mockup-phone::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      pointer-events: none;
    }

    .mockup-phone__screen {
      width: 100%;
      height: 100%;
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      background: #0a0a08;
    }

    .mockup-phone__notch {
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 30%;
      height: 14px;
      background: #0a0a08;
      border-radius: 8px;
      z-index: 10;
    }

    .mockup-tablet {
      width: 100%;
      aspect-ratio: 4/5.4;
      background: #161614;
      border-radius: 14px;
      padding: 8px;
      filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.4));
      position: relative;
    }

    .mockup-tablet::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      pointer-events: none;
    }

    .mockup-tablet__screen {
      width: 100%;
      height: 100%;
      border-radius: 8px;
      overflow: hidden;
      background: #0a0a08;
      position: relative;
    }

    /* Themed screen contents */
    .theme-screen {
      width: 100%;
      height: 100%;
      font-family: var(--sans);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .theme-screen__nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 14px;
      flex-shrink: 0;
    }

    .theme-screen__brand {
      font-weight: 500;
      letter-spacing: 0.02em;
    }

    .theme-screen__menu {
      display: flex;
      gap: 10px;
      font-size: 6px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      opacity: 0.75;
    }

    .theme-screen__hero {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 18px;
    }

    .theme-screen__eyebrow {
      font-size: 5px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      margin-bottom: 6px;
      opacity: 0.7;
    }

    .theme-screen__title {
      line-height: 1;
      margin-bottom: 8px;
    }

    .theme-screen__sub {
      font-size: 5px;
      line-height: 1.5;
      opacity: 0.6;
      margin-bottom: 10px;
      max-width: 70%;
    }

    .theme-screen__btn {
      display: inline-block;
      font-size: 5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 4px 8px;
      align-self: flex-start;
    }

    .theme-screen__cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      padding: 0 14px 14px;
    }

    .theme-screen__card {
      aspect-ratio: 1;
      border-radius: 2px;
      position: relative;
      overflow: hidden;
    }

    .theme-screen__card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 30%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    }

    /* Wellness theme — cream + sage */
    .theme-screen--wellness {
      background: #EFE9DD;
      color: #2E3A2C;
    }

    .theme-screen--wellness .theme-screen__brand {
      font-family: var(--sans);
      font-style: italic;
      font-size: 10px;
      font-weight: 400;
      color: #3A4A37;
    }

    .theme-screen--wellness .theme-screen__menu {
      color: #6F7E6B;
    }

    .theme-screen--wellness .theme-screen__eyebrow {
      color: #6F7E6B;
    }

    .theme-screen--wellness .theme-screen__title {
      font-family: var(--sans);
      font-style: italic;
      font-weight: 300;
      font-size: 18px;
      color: #2A3528;
    }

    .theme-screen--wellness .theme-screen__btn {
      background: #3A4A37;
      color: #EFE9DD;
    }

    .theme-screen--wellness .theme-screen__card {
      background: linear-gradient(135deg, #C5D0BC 0%, #8B9B83 100%);
    }

    .theme-screen--wellness .theme-screen__card:nth-child(2) {
      background: linear-gradient(135deg, #D5C7B0 0%, #A89576 100%);
    }

    .theme-screen--wellness .theme-screen__card:nth-child(3) {
      background: linear-gradient(135deg, #BCC4B5 0%, #6F7E6B 100%);
    }

    /* Fitness theme — dark + crimson */
    .theme-screen--fitness {
      background: #161412;
      color: #fff;
    }

    .theme-screen--fitness .theme-screen__brand {
      font-family: var(--sans);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #fff;
    }

    .theme-screen--fitness .theme-screen__menu {
      color: rgba(255, 255, 255, 0.5);
    }

    .theme-screen--fitness .theme-screen__eyebrow {
      color: #D4453A;
    }

    .theme-screen--fitness .theme-screen__title {
      font-family: var(--sans);
      font-weight: 800;
      font-size: 20px;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      color: #fff;
    }

    .theme-screen--fitness .theme-screen__title span {
      color: #D4453A;
    }

    .theme-screen--fitness .theme-screen__sub {
      color: rgba(255, 255, 255, 0.55);
    }

    .theme-screen--fitness .theme-screen__btn {
      background: #D4453A;
      color: #fff;
    }

    .theme-screen--fitness .theme-screen__card {
      background: linear-gradient(135deg, #2a1f1d 0%, #5a2a26 100%);
      border: 1px solid rgba(212, 69, 58, 0.2);
    }

    .theme-screen--fitness .theme-screen__card:nth-child(2) {
      background: linear-gradient(135deg, #3a1a18 0%, #8a2a22 100%);
    }

    /* Culinary theme — burgundy + copper */
    .theme-screen--cooking {
      background: #1F1411;
      color: #E8D9C0;
    }

    .theme-screen--cooking .theme-screen__brand {
      font-family: var(--sans);
      font-style: italic;
      font-size: 11px;
      font-weight: 400;
      color: #D4A66F;
      letter-spacing: 0.03em;
    }

    .theme-screen--cooking .theme-screen__menu {
      color: rgba(232, 217, 192, 0.5);
    }

    .theme-screen--cooking .theme-screen__eyebrow {
      color: #D4A66F;
    }

    .theme-screen--cooking .theme-screen__title {
      font-family: var(--sans);
      font-style: italic;
      font-weight: 300;
      font-size: 19px;
      color: #E8D9C0;
    }

    .theme-screen--cooking .theme-screen__sub {
      color: rgba(232, 217, 192, 0.55);
    }

    .theme-screen--cooking .theme-screen__btn {
      background: #D4A66F;
      color: #1F1411;
    }

    .theme-screen--cooking .theme-screen__card {
      background: linear-gradient(135deg, #3a2218 0%, #1F1411 100%);
    }

    .theme-screen--cooking .theme-screen__card:nth-child(2) {
      background: linear-gradient(135deg, #4a2a1c 0%, #2a1812 100%);
    }

    .theme-screen--cooking .theme-screen__card:nth-child(3) {
      background: linear-gradient(135deg, #5a3a26 0%, #2a1812 100%);
    }

    /* Academic theme — ivory + navy */
    .theme-screen--academic {
      background: #F2EDE2;
      color: #1A2B40;
    }

    .theme-screen--academic .theme-screen__brand {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 500;
      color: #1A2B40;
      letter-spacing: 0.02em;
    }

    .theme-screen--academic .theme-screen__menu {
      color: #5A6A7D;
    }

    .theme-screen--academic .theme-screen__eyebrow {
      color: #B58A3C;
    }

    .theme-screen--academic .theme-screen__title {
      font-family: var(--sans);
      font-weight: 400;
      font-size: 18px;
      color: #1A2B40;
      letter-spacing: -0.005em;
    }

    .theme-screen--academic .theme-screen__sub {
      color: #5A6A7D;
    }

    .theme-screen--academic .theme-screen__btn {
      background: #1A2B40;
      color: #F2EDE2;
    }

    .theme-screen--academic .theme-screen__card {
      background: linear-gradient(135deg, #1A2B40 0%, #0F1A2A 100%);
    }

    .theme-screen--academic .theme-screen__card:nth-child(2) {
      background: linear-gradient(135deg, #D8C8A4 0%, #B58A3C 100%);
    }

    .theme-screen--academic .theme-screen__card:nth-child(3) {
      background: linear-gradient(135deg, #2D4566 0%, #1A2B40 100%);
    }

    /* MyMembership generic theme (for multi-device showcase) */
    .theme-screen--brand {
      background: var(--obsidian);
      color: var(--cream);
    }

    .theme-screen--brand .theme-screen__brand {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 400;
      color: var(--cream);
      letter-spacing: 0.03em;
    }

    .theme-screen--brand .theme-screen__menu {
      color: rgba(244, 237, 224, 0.5);
    }

    .theme-screen--brand .theme-screen__eyebrow {
      color: var(--gold);
    }

    .theme-screen--brand .theme-screen__title {
      font-family: var(--sans);
      font-weight: 300;
      font-size: 18px;
      color: var(--cream);
    }

    .theme-screen--brand .theme-screen__title em {
      font-style: italic;
      color: var(--gold-bright);
    }

    .theme-screen--brand .theme-screen__sub {
      color: rgba(244, 237, 224, 0.55);
    }

    .theme-screen--brand .theme-screen__btn {
      background: var(--gold);
      color: var(--obsidian);
    }

    .theme-screen--brand .theme-screen__card {
      background: linear-gradient(135deg, #22221E 0%, #0E0E0C 100%);
      border: 1px solid rgba(176, 141, 87, 0.15);
    }

    .theme-screen--brand .theme-screen__card:nth-child(2) {
      background: linear-gradient(135deg, #2E2820 0%, #15110C 100%);
    }

    /* Theme card mockup wrapper */
    .theme__mockup {
      width: 78%;
      position: relative;
      z-index: 2;
    }

    /* ============================================
   DEVICES SECTION — Designed for every screen
   ============================================ */
    .devices {
      background: var(--paper);
      position: relative;
      overflow: hidden;
      padding-top: clamp(1.5rem, 3vw, 2.5rem);
    }

    .devices::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 60%, rgba(176, 141, 87, 0.08), transparent 50%),
        radial-gradient(ellipse at 70% 40%, rgba(14, 14, 12, 0.04), transparent 50%);
      pointer-events: none;
    }

    .devices__showcase {
      display: grid;
      grid-template-columns: 0.85fr 1.6fr 0.7fr;
      align-items: center;
      gap: 0;
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* Two floating iPhones — scroll parallax, light background */
    .devices__phones {
      position: relative;
      max-width: 900px;
      height: clamp(460px, 52vw, 660px);
      margin: 0 auto;
      z-index: 2;
    }

    .dglow {
      position: absolute;
      top: 50%;
      left: 50%;
      width: clamp(360px, 50vw, 620px);
      height: clamp(360px, 50vw, 620px);
      margin: calc(clamp(360px, 50vw, 620px) / -2) 0 0 calc(clamp(360px, 50vw, 620px) / -2);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(176, 141, 87, 0.45) 0%, rgba(201, 163, 107, 0.18) 38%, transparent 70%);
      filter: blur(60px);
      pointer-events: none;
      z-index: 1;
      will-change: transform;
    }

    .dphone {
      position: absolute;
      z-index: 3;
      will-change: transform;
    }

    .dphone__rot {
      will-change: transform;
    }

    .dphone--a {
      left: 14%;
      top: 4%;
      width: clamp(200px, 26vw, 290px);
      z-index: 4;
    }

    .dphone--a .dphone__rot {
      transform: rotate(-6deg);
    }

    .dphone--b {
      left: 48%;
      top: 22%;
      width: clamp(165px, 21vw, 240px);
      z-index: 3;
    }

    .dphone--b .dphone__rot {
      transform: rotate(8deg);
    }

    /* iPhone frame */
    .iphone {
      position: relative;
      aspect-ratio: 1 / 2.03;
      background: linear-gradient(150deg, #2a2a24 0%, #15150f 55%, #050504 100%);
      border-radius: 17% / 8.3%;
      padding: 2.6%;
      box-shadow:
        0 40px 70px -28px rgba(0, 0, 0, 0.5),
        0 8px 20px -10px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    .iphone::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 17% / 8.3%;
      border: 1px solid rgba(255, 255, 255, 0.05);
      pointer-events: none;
    }

    .iphone__screen {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 13% / 6.4%;
      overflow: hidden;
      background: linear-gradient(170deg, #1b1b18 0%, #0b0b09 60%, #060604 100%);
    }

    .iphone__screen image-slot {
      width: 100%;
      height: 100%;
    }

    .iphone__shot {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 0;
      display: block;
    }

    .iphone__island {
      position: absolute;
      top: 3.2%;
      left: 50%;
      transform: translateX(-50%);
      width: 32%;
      height: 3.4%;
      min-height: 9px;
      background: #050504;
      border-radius: 999px;
      z-index: 4;
    }

    .devices__tablet {
      transform: translateX(15%) translateY(20px);
      z-index: 1;
    }

    .devices__laptop {
      z-index: 3;
      position: relative;
    }

    .devices__phone {
      transform: translateX(-30%) translateY(10px);
      z-index: 2;
      width: 60%;
      justify-self: start;
    }

    .devices__caption {
      text-align: center;
      margin-top: 5rem;
      position: relative;
      z-index: 2;
    }

    .devices__caption p {
      font-family: var(--sans);
      font-style: italic;
      font-weight: 300;
      font-size: 1.15rem;
      color: var(--muted);
      max-width: 50ch;
      margin: 0 auto;
    }

    /* ============================================
   THEME ROWS — editorial alternating layout
   ============================================ */
    .theme-rows {
      display: flex;
      flex-direction: column;
      gap: clamp(4rem, 8vw, 7rem);
    }

    .theme-row {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      align-items: center;
      gap: clamp(2rem, 5vw, 5rem);
    }

    .theme-row--image-left .theme-row__visual {
      order: 0;
    }

    .theme-row--image-left .theme-row__body {
      order: 1;
    }

    .theme-row--image-right .theme-row__visual {
      order: 1;
    }

    .theme-row--image-right .theme-row__body {
      order: 0;
    }

    .theme-row__visual {
      position: relative;
      will-change: transform;
    }

    .theme-row__visual img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 6px;
    }

    .theme-row__body {
      padding: 1rem 0;
    }

    .theme-row__category {
      font-size: 0.85rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      font-weight: 500;
    }

    .theme-row .h2 em {
      font-family: var(--sans);
      font-style: italic;
      color: var(--gold);
    }

    .themes__footer {
      text-align: center;
      margin-top: clamp(4rem, 8vw, 6rem);
      padding-top: clamp(3rem, 6vw, 5rem);
      border-top: 1px solid var(--hairline);
    }

    .themes__footer p {
      font-family: var(--sans);
      font-style: italic;
      font-weight: 300;
      font-size: 1.25rem;
      color: var(--obsidian);
      margin-bottom: 1.5rem;
    }

    /* ============================================
   DEVICES — image-based showcase + parallax
   ============================================ */
    .devices__media {
      position: relative;
      max-width: 1080px;
      margin: 0 auto;
      z-index: 2;
    }

    .devices__media img {
      width: 100%;
      height: auto;
      display: block;
      position: relative;
      z-index: 2;
      will-change: transform;
    }

    .devices__ornament {
      position: absolute;
      width: 120px;
      height: 1px;
      background: var(--gold);
      opacity: 0.35;
      will-change: transform;
      z-index: 1;
    }

    .devices__ornament::before,
    .devices__ornament::after {
      content: '';
      position: absolute;
      width: 6px;
      height: 6px;
      background: var(--gold);
      transform: rotate(45deg);
      top: -2.5px;
    }

    .devices__ornament::before {
      left: -3px;
    }

    .devices__ornament::after {
      right: -3px;
      opacity: 0.4;
    }

    .devices__ornament--tl {
      top: 6%;
      left: -3%;
      transform: rotate(-12deg);
    }

    .devices__ornament--br {
      bottom: 8%;
      right: -2%;
      transform: rotate(8deg);
    }

    /* Respect reduced motion */
    @media (prefers-reduced-motion: reduce) {

      .theme-row__visual,
      .devices__media img,
      .devices__ornament {
        transform: none !important;
        transition: none !important;
      }
    }

    /* ============================================
   REVEAL
   ============================================ */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    /* Image fade-in (smooths lazy-load pop-in) */
    img {
      transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .img-fade {
      opacity: 0;
    }

    .img-fade.img-ready {
      opacity: 1;
    }

    /* ============================================
   RESPONSIVE
   ============================================ */
    @media (max-width: 1100px) {
      .invest__plans {
        grid-template-columns: repeat(2, 1fr);
      }

      .themes__grid {
        grid-template-columns: 1fr;
      }

      .theme__visual {
        height: 320px;
        padding: 2rem 1.5rem 0;
      }

      .theme__mockup {
        width: 72%;
      }

      .devices__showcase {
        grid-template-columns: 0.7fr 1.4fr 0.6fr;
      }

      .devices__tablet {
        transform: translateX(20%) translateY(15px);
      }

      .devices__phone {
        transform: translateX(-35%) translateY(10px);
        width: 55%;
      }

      .theme-row {
        gap: 2.5rem;
      }
    }

    @media (max-width: 1024px) {
      .features__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .industries__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .industry:nth-child(3n) {
        border-right: 1px solid rgba(176, 141, 87, 0.18);
      }

      .industry:nth-child(2n) {
        border-right: none;
      }

      .industry:nth-last-child(-n+3) {
        border-bottom: 1px solid rgba(176, 141, 87, 0.18);
      }

      .industry:nth-last-child(-n+2) {
        border-bottom: none;
      }

      .cases {
        grid-template-columns: 1fr 1fr;
      }

      .footer__top {
        grid-template-columns: 1fr 1fr;
      }

      .faq__layout {
        grid-template-columns: 1fr;
      }

      .pillars__grid {
        grid-template-columns: 1fr;
      }

      .pillar {
        border-right: none;
        border-bottom: 1px solid rgba(176, 141, 87, 0.18);
      }

      .pillar:last-child {
        border-bottom: none;
      }
    }

    @media (max-width: 900px) {
      .case-study {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 600px;
      }

      .devices__showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 440px;
        margin: 0 auto;
      }

      .devices__tablet,
      .devices__phone,
      .devices__laptop {
        transform: none;
        width: 100%;
      }

      .devices__tablet {
        order: 2;
        max-width: 76%;
        margin: 0 auto;
      }

      .devices__laptop {
        order: 1;
      }

      .devices__phone {
        order: 3;
        max-width: 54%;
        margin: 0 auto;
        justify-self: center;
      }

      .devices__ornament {
        display: none;
      }
    }

    @media (max-width: 760px) {
      .nav__links {
        display: none;
      }

      .nav__cta {
        display: none;
      }

      .brand__mark {
        height: 74px;
      }

      .nav__toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        position: relative;
        z-index: 101;
      }

      .nav__toggle span {
        display: block;
        width: 22px;
        height: 1px;
        background: var(--cream);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
      }

      body.menu-open .nav__toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
      }

      body.menu-open .nav__toggle span:nth-child(2) {
        opacity: 0;
      }

      body.menu-open .nav__toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
      }

      .hero {
        padding: 7rem 0 3rem;
        min-height: auto;
      }

      .hero__kicker {
        font-size: 0.65rem;
        letter-spacing: 0.32em;
      }

      .hero__cta {
        flex-direction: column;
        gap: 0.9rem;
      }

      .hero__cta .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
      }

      .hero__trust {
        flex-direction: column;
        font-size: 0.7rem;
        gap: 0.5rem;
      }

      .hero__trust-dot {
        display: none;
      }

      .authority__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
      }

      .authority__item:nth-child(2n)::after,
      .authority__item:last-child::after {
        display: none;
      }

      .authority__item:nth-child(5) {
        grid-column: 1 / -1;
      }

      .pillars__motto {
        font-size: 1.7rem;
        letter-spacing: 0.02em;
      }

      .contrast {
        grid-template-columns: 1fr;
      }

      .contrast::after {
        top: auto;
        bottom: auto;
        left: 12%;
        right: 12%;
        width: auto;
        height: 1px;
        position: relative;
        margin: 3.5rem auto;
      }

      .contrast__side,
      .contrast__side--problem,
      .contrast__side--solution {
        padding: 0;
      }

      .features__grid {
        grid-template-columns: 1fr;
      }

      .industries__grid {
        grid-template-columns: 1fr;
      }

      .industry {
        border-right: none !important;
      }

      .industry {
        border-bottom: 1px solid rgba(176, 141, 87, 0.18) !important;
      }

      .industry:last-child {
        border-bottom: none !important;
      }

      .how__steps {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .how__steps::before {
        display: none;
      }

      .invest__plans {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
      }

      .cases {
        grid-template-columns: 1fr;
      }

      .case-study {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer__top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

  
    /* Footer social row */
    .footer__social {
      display: flex;
      gap: 0.9rem;
      align-items: center;
      margin-top: 1.1rem;
    }

    .footer__social a {
      width: 34px;
      height: 34px;
      border: 1px solid var(--hairline);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .footer__social a:hover {
      color: var(--gold-bright);
      border-color: var(--gold);
      transform: translateY(-1px);
    }

    .footer__social svg {
      width: 16px;
      height: 16px;
      display: block;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
      }

      .proof__quote::before {
        font-size: 7rem;
        top: -50px;
      }

      .final__motto {
        font-size: 0.65rem;
        letter-spacing: 0.32em;
      }

      .devices__showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 380px;
      }

      .devices__tablet,
      .devices__phone,
      .devices__laptop {
        transform: none;
        width: 100%;
      }

      .devices__tablet {
        order: 2;
        max-width: 70%;
        margin: 0 auto;
      }

      .devices__laptop {
        order: 1;
      }

      .devices__phone {
        order: 3;
        max-width: 50%;
        margin: 0 auto;
        justify-self: center;
      }

      .theme__visual {
        height: 280px;
        padding: 1.8rem 1.5rem 0;
      }

      .theme__mockup {
        width: 80%;
      }

      .theme-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .theme-row--image-left .theme-row__visual,
      .theme-row--image-right .theme-row__visual {
        order: 0;
      }

      .theme-row--image-left .theme-row__body,
      .theme-row--image-right .theme-row__body {
        order: 1;
      }

      .devices__ornament {
        display: none;
      }
    }


/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: var(--gutter);
  pointer-events: none;
}

.cookie[hidden] { display: none; }

.cookie--modal {
  align-items: center;
  justify-content: center;
}

.cookie__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 12, 0.55);
  backdrop-filter: blur(2px);
  opacity: 1;
  animation: cookieFadeIn 0.26s ease both;
  pointer-events: auto;
}

@keyframes cookieFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.cookie__backdrop[hidden] { display: none; }

.cookie__panel {
  position: relative;
  pointer-events: auto;
  width: 100%;
  max-width: 420px;
  background: var(--obsidian);
  color: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  box-shadow: 0 24px 60px -18px rgba(14, 14, 12, 0.6);
  padding: 1.6rem 1.6rem 1.5rem;
  /* Visible by default; entrance is a one-shot animation so the panel never
     gets stuck invisible if the tab is backgrounded / transitions throttle. */
  transform: none;
  opacity: 1;
}

.cookie--modal .cookie__panel {
  max-width: 540px;
}

.cookie.is-in .cookie__panel {
  animation: cookiePanelIn 0.34s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cookie.is-out .cookie__panel {
  animation: cookiePanelOut 0.22s ease forwards;
}

.cookie.is-out .cookie__backdrop {
  animation: cookieFadeOut 0.22s ease both;
}

@keyframes cookiePanelIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

@keyframes cookiePanelOut {
  from { opacity: 1; transform: none; }
  to   { opacity: 0; transform: translateY(10px); }
}

@keyframes cookieFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.cookie__view--banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 1rem;
}

.cookie__view[hidden] {
  display: none !important;
}

.cookie__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid var(--hairline);
}

.cookie__icon svg { width: 21px; height: 21px; }
.cookie__body { min-width: 0; }

.cookie__title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 0.35rem;
}

.cookie__copy {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--cream-soft);
  opacity: 0.85;
  text-wrap: pretty;
}

.cookie__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.cookie__btn {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.62rem 1.15rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cookie__btn--primary {
  background: var(--gold);
  color: var(--obsidian);
  flex: 1;
  min-width: 120px;
}

.cookie__btn--primary:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.cookie__btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--hairline);
  flex: 1;
  min-width: 110px;
}

.cookie__btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.cookie__btn--text {
  background: transparent;
  color: var(--muted-light);
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--hairline);
}

.cookie__btn--text:hover { color: var(--gold-bright); }

.cookie__prefs-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.cookie__close {
  position: relative;
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  transition: border-color 0.2s ease;
}

.cookie__close:hover { border-color: var(--gold); }

.cookie__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.4px;
  background: var(--cream-soft);
}

.cookie__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.cookie__close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.cookie__cats {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.cookie__cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--hairline);
}

.cookie__cat:first-child { border-top: none; }

.cookie__cat-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.cookie__cat-desc {
  display: block;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--cream-soft);
  opacity: 0.78;
  text-wrap: pretty;
}

.cookie__always {
  flex: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-bright);
  white-space: nowrap;
  margin-top: 0.15rem;
}

.cookie__switch {
  position: relative;
  flex: none;
  width: 44px;
  height: 24px;
  margin-top: 0.1rem;
  cursor: pointer;
}

.cookie__switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.cookie__track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--charcoal-2);
  border: 1px solid var(--hairline);
  transition: background 0.22s ease, border-color 0.22s ease;
}

.cookie__track::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cream-soft);
  transform: translateY(-50%);
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), background 0.22s ease;
}

.cookie__switch input:checked ~ .cookie__track {
  background: var(--gold);
  border-color: var(--gold);
}

.cookie__switch input:checked ~ .cookie__track::after {
  transform: translateY(-50%) translateX(20px);
  background: var(--obsidian);
}

.cookie__switch input:focus-visible ~ .cookie__track {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.cookie__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.cookie__actions--prefs { margin-top: 1.4rem; }

@media (max-width: 540px) {
  .cookie { padding: 0.9rem; }
  .cookie__panel { max-width: none; }
  .cookie__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .cookie__btn--text { align-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie__panel,
  .cookie.is-in .cookie__panel,
  .cookie__backdrop,
  .cookie__track,
  .cookie__track::after { animation: none; transition: none; }
}
