/* Visual-editor-port: per-section styles for cms_pages renderer. */
@import url("./sections/hero.css");
@import url("./sections/stats.css");
@import url("./sections/cards-grid.css");
@import url("./sections/rich-text.css");
@import url("./sections/cta.css");
@import url("./sections/video.css");
@import url("./sections/image-text.css");
@import url("./sections/gallery.css");
@import url("./sections/spacer.css");
@import url("./sections/pricing-tiers.css");
@import url("./sections/testimonials.css");
@import url("./sections/contact-form.css");
@import url("./sections/features-grid.css");
@import url("./sections/animated-counters.css");

:root {
      --bg: #0D0D0D;
      --surface: #141414;
      --surface-2: #1A1A1A;
      --ink: #FFF;
      --ink-2: rgb(255 255 255 / 50%);
      --ink-3: rgb(255 255 255 / 25%);
      --border: rgb(255 255 255 / 8%);
      --accent: #B08C5D;
      --accent-dim: #7A5F3A;
      --accent-bg: #1A1510;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: Inter, system-ui, sans-serif;
      font-weight: 400;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizelegibility;
      overflow-x: hidden;
    }

    ::selection { background: var(--accent); color: var(--bg); }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    .container { max-width: 1080px; margin: 0 auto; padding: 0 48px; }

    /* ===== FILM GRAIN OVERLAY — the wow ===== */
    body::after {
      content: '';
      position: fixed; inset: 0;
      z-index: 9999;
      pointer-events: none;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 256px 256px;
    }

    /* ===== TYPOGRAPHY ===== */
    .label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-2);
    }
    .label--accent { color: var(--accent); margin-bottom: 20px; display: block; }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.12s; }
    .reveal-delay-2 { transition-delay: 0.24s; }
    .reveal-delay-3 { transition-delay: 0.36s; }
    .reveal-delay-4 { transition-delay: 0.48s; }

    /* Image clip reveal */
    .img-reveal {
      overflow: hidden;
      position: relative;
    }

    .img-reveal::after {
      content: '';
      position: absolute; inset: 0;
      background: var(--bg);
      transform-origin: right;
      transition: transform 1.1s cubic-bezier(0.77, 0, 0.18, 1);
    }

    .img-reveal.visible::after {
      transform: scaleX(0);
    }

    .img-reveal img {
      transform: scale(1.12);
      transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .img-reveal.visible img { transform: scale(1); }

    @media (prefers-reduced-motion: reduce) {
      .reveal, .img-reveal::after, .img-reveal img { opacity: 1; transform: none; transition: none; }

      .hero-headline span, .hero-eyebrow, .hero-tagline, .hero-body, .hero-buttons, .hero-proof {
        opacity: 1; transform: none; animation: none;
      }
    }

    /* ===== HEADER ===== */
    .header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      height: 64px;
      display: flex; align-items: center;
      transition: background 0.4s ease, border-color 0.4s ease;
      border-bottom: 1px solid transparent;
    }

    .header.scrolled {
      background: rgb(13 13 13 / 92%);
      backdrop-filter: blur(24px) saturate(1.2);
      border-bottom-color: var(--border);
    }
    .header .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

    .logo-svg { height: 38px; width: auto; opacity: 1; transition: height 0.3s ease, opacity 0.2s; }
    .logo-svg:hover { opacity: 0.7; }
    .header { height: 92px; transition: background 0.4s ease, border-color 0.4s ease, height 0.3s ease; }
    .header.scrolled { height: 72px; }
    .header.scrolled .logo-svg { height: 28px; }

    .nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }

    .nav-links a {
      font-size: 13px; font-weight: 400; color: var(--ink-2);
      letter-spacing: 0.01em; transition: color 0.2s ease;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px; }

    .nav-cta {
      font-size: 11px !important; font-weight: 500 !important;
      letter-spacing: 0.1em !important; text-transform: uppercase;
      color: var(--bg) !important; background: var(--ink);
      padding: 8px 24px; transition: background 0.2s ease;
    }
    .nav-cta:hover { background: rgb(255 255 255 / 80%) !important; }

    .menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 12px; }
    .menu-toggle span { display: block; width: 20px; height: 1px; background: var(--ink); margin: 5px 0; transition: transform 0.3s ease, opacity 0.3s ease; }

    /* ===== HERO — SPLIT EDITORIAL ===== */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
      background: var(--bg);
    }

    /* Subtle ambient glow behind image side */
    .hero::before {
      content: '';
      position: absolute;
      top: 10%; right: 0; width: 60%; height: 80%;
      background: radial-gradient(ellipse 70% 70% at 70% 50%, rgb(176 140 93 / 4%), transparent);
      z-index: 0;
      pointer-events: none;
    }

    /* Left column — text content */
    .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 140px 0 100px 48px;
      position: relative;
      z-index: 2;
      max-width: 600px;
      margin-left: auto;
      padding-right: 64px;
    }

    /* Right column — portrait image */
    .hero-portrait {
      position: relative;
      z-index: 1;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }

    .hero-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
      filter: grayscale(25%) brightness(0.85) contrast(1.05);
      transform: scale(1.02);
      transition: transform 0.1s linear;
    }

    /* Fade left edge into background */
    .hero-portrait::before {
      content: '';
      position: absolute; inset: 0; z-index: 2;
      background: linear-gradient(to right,
        var(--bg) 0%,
        rgb(13 13 13 / 70%) 12%,
        rgb(13 13 13 / 15%) 35%,
        transparent 55%
      );
      pointer-events: none;
    }

    /* Fade bottom edge */
    .hero-portrait::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 30%; z-index: 2;
      background: linear-gradient(to top, var(--bg), transparent);
      pointer-events: none;
    }

    /* Subtle top fade */
    .hero-portrait-top-fade {
      position: absolute; top: 0; left: 0; right: 0;
      height: 15%; z-index: 2;
      background: linear-gradient(to bottom, rgb(13 13 13 / 50%), transparent);
      pointer-events: none;
    }

    /* Vertical accent line between columns */
    .hero-divider {
      position: absolute;
      left: 50%; top: 20%; bottom: 20%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--border), rgb(176 140 93 / 15%), var(--border), transparent);
      z-index: 3;
      pointer-events: none;
    }

    .hero-eyebrow {
      color: var(--accent);
      margin-bottom: 32px;
      opacity: 0; transform: translateY(12px);
      animation: fadeUp 0.8s 0.3s ease forwards;
    }

    .hero-headline {
      font-weight: 200;
      font-size: clamp(3rem, 5.5vw, 5.5rem);
      letter-spacing: -0.02em;
      line-height: 0.92;
      color: var(--ink);
      margin-bottom: 20px;
    }

    .hero-headline span {
      display: block;
      opacity: 0; transform: translateY(40px);
      animation: heroSlide 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .hero-headline span:nth-child(2) { animation-delay: 0.08s; }

    .hero-headline em {
      font-style: normal;
      color: var(--accent);
    }

    .hero-tagline {
      font-weight: 300;
      font-size: clamp(1rem, 2vw, 1.3rem);
      letter-spacing: 0.08em;
      color: var(--ink-3);
      text-transform: lowercase;
      margin-bottom: 28px;
      opacity: 0; transform: translateY(12px);
      animation: fadeUp 0.8s 0.5s ease forwards;
    }

    .hero-body {
      font-size: 16px; font-weight: 300;
      color: var(--ink-2);
      max-width: 440px;
      line-height: 1.8;
      margin-bottom: 48px;
      opacity: 0; transform: translateY(12px);
      animation: fadeUp 0.8s 0.7s ease forwards;
    }

    .hero-buttons {
      display: flex; gap: 16px; flex-wrap: wrap;
      opacity: 0; transform: translateY(12px);
      animation: fadeUp 0.8s 0.9s ease forwards;
    }

    .hero-proof {
      margin-top: 24px;
      font-size: 12px; font-weight: 400;
      color: var(--ink-3);
      letter-spacing: 0.03em;
      opacity: 0;
      animation: fadeUp 0.8s 1.1s ease forwards;
    }
    .hero-proof strong { color: var(--ink-2); font-weight: 500; }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 32px; left: 48px;
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      opacity: 0; animation: fadeUp 0.8s 1.4s ease forwards; z-index: 3;
    }

    .hero-scroll span {
      font-size: 9px; font-weight: 500; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--ink-3); writing-mode: vertical-rl;
    }

    .scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, var(--ink-3), transparent);
      position: relative; overflow: hidden;
    }

    .scroll-line::after {
      content: ''; position: absolute; top: -100%; left: 0;
      width: 1px; height: 100%; background: var(--accent);
      animation: scrollDrop 2.5s ease-in-out infinite;
    }

    @keyframes scrollDrop { 0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; } }

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

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

    /* ===== BUTTONS ===== */
    .btn-primary {
      display: inline-block;
      background: var(--ink); color: var(--bg);
      padding: 16px 40px; border: none;
      font-family: Inter, sans-serif;
      font-weight: 500; font-size: 11px;
      letter-spacing: 0.1em; text-transform: uppercase;
      cursor: pointer;
      transition: background 0.25s ease, transform 0.25s ease;
    }
    .btn-primary:hover { background: rgb(255 255 255 / 85%); transform: translateY(-1px); }
    .btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

    .btn-ghost {
      display: inline-block;
      color: var(--ink-2); border: 1px solid var(--border);
      padding: 16px 40px;
      font-family: Inter, sans-serif;
      font-weight: 500; font-size: 11px;
      letter-spacing: 0.1em; text-transform: uppercase;
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .btn-ghost:hover { color: var(--ink); border-color: rgb(255 255 255 / 25%); background: rgb(255 255 255 / 3%); }
    .btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

    /* ===== SECTIONS ===== */
    .section { padding: 120px 0; border-bottom: 1px solid var(--border); }

    .section-title {
      font-weight: 300;
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      letter-spacing: 0.06em;
      text-transform: lowercase;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    /* ===== STATS BAR ===== */
    .stats-bar { border-bottom: 1px solid var(--border); }

    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: var(--border); border: 1px solid var(--border);
    }
    .stat { padding: 56px 32px; background: var(--surface); text-align: center; }

    .stat-number {
      font-weight: 200;
      font-size: clamp(2.8rem, 5vw, 4rem);
      color: var(--ink); line-height: 1; margin-bottom: 8px;
      font-feature-settings: 'tnum' 1;
    }

    .stat-label {
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--ink-3);
    }

    /* ===== ABOUT — split editorial ===== */
    .about-grid {
      display: grid; grid-template-columns: 5fr 7fr;
      gap: 96px; align-items: start;
    }
    .about-image { position: relative; }

    .about-image img {
      width: 100%; aspect-ratio: 3/4;
      object-fit: cover; filter: grayscale(20%);
    }

    .about-image::after {
      content: ''; position: absolute; inset: 0;
      border: 1px solid var(--border); pointer-events: none;
    }

    .about-quote {
      font-weight: 200;
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      letter-spacing: 0.02em;
      line-height: 1.5;
      margin-bottom: 40px;
    }

    .about-text p {
      font-size: 15px; font-weight: 300;
      color: var(--ink-2); line-height: 1.75;
      margin-bottom: 24px; max-width: 480px;
    }

    .about-standalone {
      font-size: 18px; font-weight: 300;
      color: var(--ink); letter-spacing: 0.02em;
      margin-top: 32px; padding-top: 32px;
      border-top: 1px solid var(--border);
    }

    /* ===== NARRATIVE BANNER — quote overlaid on image triptych ===== */
    .narrative-banner {
      position: relative;
      overflow: hidden;
      min-height: 88vh;
      display: flex;
      align-items: center;
      justify-content: center;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    /* Image triptych — full bleed background */
    .narrative-banner-bg {
      position: absolute; inset: 0;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2px;
      z-index: 0;
    }

    .ng-img {
      position: relative;
      overflow: hidden;
    }

    .ng-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      filter: grayscale(55%) brightness(0.55) contrast(1.1);
      transform: scale(1.04);
      transition: filter 1.4s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .narrative-banner:hover .ng-img img {
      filter: grayscale(35%) brightness(0.62) contrast(1.05);
      transform: scale(1.06);
    }

    /* Center image slightly brighter to draw eye */
    .ng-img--center img {
      filter: grayscale(45%) brightness(0.6) contrast(1.1);
    }

    /* Dark readability overlay — radial vignette + warm tint */
    .narrative-banner-overlay {
      position: absolute; inset: 0;
      z-index: 1;
      background:
        radial-gradient(ellipse 60% 70% at 50% 50%, rgb(13 13 13 / 72%) 0%, rgb(13 13 13 / 50%) 45%, rgb(13 13 13 / 30%) 75%, rgb(13 13 13 / 35%) 100%),
        linear-gradient(180deg, rgb(13 13 13 / 50%) 0%, rgb(13 13 13 / 30%) 30%, rgb(13 13 13 / 30%) 70%, rgb(13 13 13 / 60%) 100%);
      pointer-events: none;
    }

    .narrative-banner-overlay::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 40% 35% at 50% 50%, rgb(176 140 93 / 8%), transparent 70%);
      pointer-events: none;
    }

    /* Text content — centered, floating above images */
    .narrative-banner-content {
      position: relative;
      z-index: 2;
      max-width: 780px;
      margin: 0 auto;
      padding: 120px 48px;
      text-align: center;
    }

    .ng-accent-mark {
      width: 48px; height: 1px;
      background: var(--accent);
      opacity: 0.7;
      margin: 0 auto 48px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .ng-accent-mark.visible { transform: scaleX(1); }

    .ng-quote {
      font-weight: 200;
      font-size: clamp(1.7rem, 3.2vw, 2.8rem);
      letter-spacing: 0.01em;
      line-height: 1.45;
      color: rgb(255 255 255 / 96%);
      margin: 0 auto;
      max-width: 780px;
      text-shadow: 0 2px 30px rgb(0 0 0 / 40%);
    }

    .ng-bridge-dot {
      width: 4px; height: 4px;
      background: var(--accent);
      border-radius: 50%;
      margin: 56px auto 0;
      transform: scale(0);
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
      box-shadow: 0 0 12px rgb(176 140 93 / 40%);
    }
    .ng-bridge-dot.visible { transform: scale(1); }

    @media (width <= 900px) {
      .narrative-banner { min-height: 70vh; }

      .narrative-banner-bg {
        grid-template-columns: 1fr;
      }

      .narrative-banner-bg .ng-img:nth-child(2),
      .narrative-banner-bg .ng-img:nth-child(3) { display: none; }
      .narrative-banner-content { padding: 80px 24px; }

      .narrative-banner-overlay {
        background:
          linear-gradient(180deg, rgb(13 13 13 / 55%) 0%, rgb(13 13 13 / 65%) 50%, rgb(13 13 13 / 80%) 100%);
      }
    }

    /* ===== PILLARS ===== */
    .pillars-header { margin-bottom: 80px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }

    .pillars-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border);
    }
    .pillar { padding: 56px 48px; background: var(--bg); }

    .pillar-num {
      font-weight: 200; font-size: 56px;
      color: var(--ink-3); line-height: 1;
      margin-bottom: 32px;
      font-feature-settings: 'tnum' 1;
      opacity: 0; transform: translateX(-8px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }
    .pillar.visible .pillar-num { opacity: 1; transform: translateX(0); }

    .pillar h3 {
      font-weight: 300; font-size: 16px;
      letter-spacing: 0.06em; margin-bottom: 16px;
    }
    .pillar p { font-size: 14px; font-weight: 300; color: var(--ink-2); line-height: 1.75; }

    /* ===== PROCESS ===== */
    .process-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: var(--border);
      margin-top: 80px;
    }
    .process-step { padding: 48px 36px; background: var(--surface); }

    .process-num {
      font-weight: 500; font-size: 11px;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--ink-3); margin-bottom: 20px;
    }
    .process-step h3 { font-weight: 300; font-size: 17px; letter-spacing: 0.04em; margin-bottom: 16px; }
    .process-step p { font-size: 14px; font-weight: 300; color: var(--ink-2); line-height: 1.75; }
    .process-cta { margin-top: 64px; text-align: center; }
    .process-cta-note { margin-top: 16px; font-size: 13px; font-weight: 300; color: var(--ink-3); }

    /* ===== APP SECTION — phone showcase ===== */
    .app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .app-phone { position: relative; text-align: center; }

    .app-phone img {
      max-width: 320px; margin: 0 auto;
      border-radius: 0;
      filter: brightness(0.95);
    }
    .app-features { list-style: none; margin-top: 32px; }

    .app-features li {
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      font-size: 14px; font-weight: 300; color: var(--ink-2);
      display: flex; align-items: center; gap: 16px;
    }

    .app-features li::before {
      content: ''; width: 4px; height: 4px;
      background: var(--accent); border-radius: 50%; flex-shrink: 0;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1px; background: var(--border); margin-top: 64px;
    }
    .testimonial { padding: 48px 40px; background: var(--surface); transition: background 0.3s ease; }
    .testimonial:hover { background: var(--surface-2); }

    .testimonial-result {
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 16px;
    }
    .testimonial p { font-weight: 300; font-size: 15px; line-height: 1.75; color: var(--ink-2); margin-bottom: 24px; }

    .testimonial-author {
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--accent-dim);
    }

    /* ===== APP SHOWCASE (inside pricing) ===== */
    .app-showcase {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 72px;
      align-items: center;
      margin: 56px 0 96px;
      padding: 56px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
    }

    .app-showcase::before {
      content: '';
      position: absolute;
      top: 50%; left: 20%; transform: translateY(-50%);
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgb(176 140 93 / 5%), transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .app-showcase-image {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .app-showcase-image img {
      max-width: 340px;
      width: 100%;
      margin: 0 auto;
      filter: brightness(0.95);
    }

    .app-showcase-content {
      position: relative;
      z-index: 1;
    }

    .app-showcase-title {
      font-weight: 200;
      font-size: clamp(2rem, 3.5vw, 3rem);
      letter-spacing: 0.02em;
      line-height: 1.05;
      color: var(--ink);
      margin-bottom: 20px;
    }

    .app-showcase-desc {
      font-size: 15px;
      font-weight: 300;
      color: var(--ink-2);
      line-height: 1.75;
      margin-bottom: 32px;
      max-width: 460px;
    }

    .app-showcase-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .app-showcase-features li {
      padding: 14px 0;
      border-top: 1px solid var(--border);
      font-size: 13px;
      font-weight: 400;
      color: var(--ink-2);
      letter-spacing: 0.01em;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .app-showcase-features li:last-child { border-bottom: 1px solid var(--border); }

    .app-showcase-features li::before {
      content: '';
      width: 4px; height: 4px;
      background: var(--accent);
      border-radius: 50%;
      flex-shrink: 0;
    }

    @media (width <= 900px) {
      .app-showcase { grid-template-columns: 1fr; gap: 48px; }
      .app-showcase-image img { max-width: 260px; }
    }

    /* ===== PRICING PREVIEW ===== */
    .pricing-intro {
      font-size: 15px; font-weight: 300;
      color: var(--ink-2);
      line-height: 1.75;
      margin-bottom: 72px;
      max-width: 560px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1.25fr;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      margin-bottom: 48px;
      align-items: stretch;
    }

    .pricing-card {
      background: var(--surface);
      padding: 56px 40px 48px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      position: relative;
      transition: background 0.3s ease;
    }
    .pricing-card:hover { background: var(--surface-2); }

    /* Featured Premium — darker, warm edge glow, taller */
    .pricing-card--featured {
      background: linear-gradient(180deg, #1a1612 0%, var(--accent-bg) 100%);
      padding: 72px 44px 56px;
      margin: -24px -1px -1px;
      border: 1px solid var(--accent-dim);
      box-shadow: 0 0 0 1px var(--accent-dim), 0 24px 60px rgb(0 0 0 / 50%), 0 0 80px rgb(176 140 93 / 8%);
      z-index: 2;
    }

    .pricing-card--featured::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 40% at 50% 0%, rgb(176 140 93 / 12%), transparent);
      pointer-events: none;
    }

    .pricing-card--featured:hover {
      background: linear-gradient(180deg, #1f1914 0%, #201711 100%);
    }

    .pricing-badge {
      position: absolute;
      top: -12px; left: 50%;
      transform: translateX(-50%);
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--bg);
      background: var(--accent);
      padding: 6px 14px;
      white-space: nowrap;
    }

    .pricing-tier-label {
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-3);
      margin-bottom: 24px;
    }

    .pricing-tier-label--featured {
      color: var(--accent);
    }

    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .pricing-amount {
      font-weight: 200;
      font-size: clamp(2.5rem, 4vw, 3.6rem);
      color: var(--ink);
      line-height: 1;
      font-feature-settings: 'tnum' 1;
    }

    .pricing-card--featured .pricing-amount {
      font-size: clamp(1.6rem, 2vw, 2rem);
    }

    .pricing-amount--text {
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--ink);
      letter-spacing: 0.02em;
    }

    .pricing-unit {
      font-size: 12px;
      font-weight: 400;
      color: var(--ink-3);
      letter-spacing: 0.06em;
      text-transform: lowercase;
    }

    .pricing-desc {
      font-size: 14px;
      font-weight: 300;
      color: var(--ink-2);
      line-height: 1.7;
      max-width: 320px;
    }

    .pricing-card--featured .pricing-desc {
      color: rgb(255 255 255 / 65%);
    }

    .pricing-fit {
      font-size: 13px;
      font-weight: 300;
      color: var(--ink-2);
      line-height: 1.65;
      padding: 16px 18px;
      border-left: 2px solid var(--accent);
      background: rgb(176 140 93 / 4%);
    }

    .pricing-card--featured .pricing-fit {
      background: rgb(176 140 93 / 10%);
      color: rgb(255 255 255 / 80%);
    }

    .pricing-fit-label {
      display: block;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 6px;
    }

    .pricing-features {
      list-style: none;
      padding: 0;
      margin: 0;
      flex-grow: 1;
      position: relative;
      z-index: 1;
    }

    .pricing-features li {
      font-size: 13px;
      font-weight: 300;
      color: var(--ink-2);
      line-height: 1.6;
      padding: 12px 0;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .pricing-card--featured .pricing-features li {
      border-top-color: rgb(176 140 93 / 15%);
      color: rgb(255 255 255 / 75%);
    }

    .pricing-features li strong {
      font-weight: 500;
      color: var(--ink);
    }

    .pricing-features li::before {
      content: '';
      width: 4px; height: 4px;
      background: var(--accent);
      border-radius: 50%;
      margin-top: 9px;
      flex-shrink: 0;
    }

    .pricing-features li:last-child {
      border-bottom: 1px solid var(--border);
    }

    .pricing-card--featured .pricing-features li:last-child {
      border-bottom-color: rgb(176 140 93 / 15%);
    }

    .pricing-cta {
      width: 100%;
      text-align: center;
      margin-top: auto;
      position: relative;
      z-index: 1;
    }

    .pricing-cta-pair {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-top: auto;
      position: relative;
      z-index: 1;
    }

    .pricing-cta-pair .pricing-cta {
      margin-top: 0;
      padding: 14px 16px;
      font-size: 10px;
    }

    .pricing-cta-block {
      text-align: center;
      padding-top: 8px;
    }

    .pricing-cta-note {
      font-size: 12px;
      font-weight: 400;
      color: var(--ink-3);
      letter-spacing: 0.03em;
    }

    @media (width <= 1024px) {
      .pricing-grid { grid-template-columns: 1fr; }

      .pricing-card--featured {
        margin: 0;
        border: 1px solid var(--accent-dim);
      }
    }

    /* ===== CTA — cinematic close ===== */
    .cta-section {
      padding: 180px 0;
      text-align: center;
      position: relative; overflow: hidden;
      border-bottom: 1px solid var(--border);
    }

    .cta-bg {
      position: absolute; inset: 0; z-index: 0;
    }

    .cta-bg img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      opacity: 0.12;
      filter: grayscale(100%) blur(1px);
    }
    .cta-section .container { position: relative; z-index: 1; }

    .cta-title {
      font-weight: 200;
      font-size: clamp(2.5rem, 7vw, 5.5rem);
      letter-spacing: -0.01em;
      line-height: 1;
      margin-bottom: 20px;
    }

    .cta-subtitle {
      font-weight: 300; font-size: 18px;
      letter-spacing: 0.08em; color: var(--ink-2);
      text-transform: lowercase; margin-bottom: 40px;
    }

    .cta-quote {
      font-weight: 300; font-size: 16px;
      color: var(--ink-2); max-width: 480px;
      margin: 0 auto 48px; line-height: 1.75;
    }

    .cta-quote cite {
      display: block; margin-top: 10px; font-size: 11px; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--accent-dim); font-style: normal;
    }
    .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    .cta-scarcity {
      margin-top: 16px; font-size: 11px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
    }
    .cta-risk { margin-top: 12px; font-size: 13px; font-weight: 300; color: var(--ink-3); }

    /* ===== FOOTER ===== */
    .footer { padding: 80px 0 32px; background: var(--surface); }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
    .footer-brand-tagline { font-size: 14px; font-weight: 300; color: var(--ink-3); margin-top: 20px; }
    .footer-col h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 24px; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 12px; }
    .footer-col a { font-size: 14px; color: var(--ink-3); transition: color 0.2s; }
    .footer-col a:hover { color: var(--ink); }
    .footer-col a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px; }
    .footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { font-size: 13px; color: var(--ink-3); }
    .footer-legal { display: flex; gap: 24px; }
    .footer-legal a { font-size: 13px; color: var(--ink-3); transition: color 0.2s; }
    .footer-legal a:hover { color: var(--ink-2); }

    /* ===== RESPONSIVE ===== */
    @media (width <= 1024px) {
      .hero { grid-template-columns: 1fr 1fr; }
      .hero-content { padding-left: 32px; padding-right: 40px; }
      .hero-headline { font-size: clamp(2.5rem, 5vw, 4rem); }
      .pillars-grid { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-image { max-width: 500px; }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .app-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (width <= 768px) {
      .container { padding: 0 24px; }
      .nav-links { display: none; }
      .menu-toggle { display: block; }
      .process-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

      .hero {
        grid-template-columns: 1fr;
        grid-template-rows: 55vh auto;
        min-height: auto;
      }
      .hero-portrait { order: -1; min-height: 55vh; }

      .hero-portrait::before {
        background: linear-gradient(to right, rgb(13 13 13 / 30%), transparent);
      }
      .hero-portrait::after { height: 50%; }

      .hero-content {
        padding: 48px 24px 72px;
        max-width: 100%;
        margin-left: 0;
        padding-right: 24px;
        margin-top: -80px;
        position: relative;
        z-index: 4;
      }
      .hero-divider { display: none; }
      .hero-headline { font-size: clamp(2.6rem, 10vw, 3.5rem); }
      .hero-body { margin-bottom: 36px; }
      .section { padding: 80px 0; }
      .cta-section { padding: 120px 0; }
      .testimonial, .pillar { padding: 40px 28px; }
      .hero-scroll { display: none; }
    }

    @media (width <= 480px) {
      .hero-headline { font-size: clamp(2.6rem, 13vw, 3.5rem); }
      .btn-primary, .btn-ghost { padding: 14px 32px; width: 100%; text-align: center; }
      .hero-buttons, .cta-buttons { flex-direction: column; gap: 12px; }
      .stat { padding: 36px 16px; }
    }

    /* ===== SMOOTH SCROLL — Lenis-like ===== */
    html.lenis, html.lenis body { height: auto; }
    .lenis.lenis-smooth { scroll-behavior: auto !important; }
    .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

    /* ===== HERO TEXT SPLIT ANIMATION ===== */
    .hero-headline .char {
      display: inline-block;
      opacity: 0;
      transform: translateY(60px) rotateX(-40deg);
      animation: charReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      transform-origin: bottom center;
    }

    @keyframes charReveal {
      to { opacity: 1; transform: translateY(0) rotateX(0deg); }
    }

    /* ===== MAGNETIC BUTTONS ===== */
    .btn-magnetic {
      position: relative;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btn-magnetic .btn-text {
      display: inline-block;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* ===== CURSOR GLOW ===== */
    .cursor-glow {
      position: fixed;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgb(176 140 93 / 6%) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
      transform: translate(-50%, -50%);
      transition: opacity 0.4s ease;
      opacity: 0;
      will-change: transform;
    }
    .cursor-glow.active { opacity: 1; }

    /* ===== NARRATIVE GALLERY PARALLAX DEPTH ===== */
    .ng-img {
      will-change: transform;
    }

    /* ===== SECTION HEADINGS — draw-in accent line ===== */
    .section-title::after {
      content: '';
      display: block;
      width: 0;
      height: 1px;
      background: var(--accent);
      margin-top: 20px;
      transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    }

    .section-title.visible::after {
      width: 48px;
    }

    /* ===== STATS NUMBER GLOW ON REVEAL ===== */
    .stat-number {
      transition: text-shadow 1.5s ease;
    }

    .stat.visible .stat-number {
      text-shadow: 0 0 40px rgb(176 140 93 / 15%);
    }

    /* ===== TESTIMONIAL HOVER LIFT ===== */
    .testimonial {
      transition: background 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    }

    .testimonial:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgb(0 0 0 / 30%);
    }

    /* ===== PILLAR HOVER — accent border ===== */
    .pillar {
      transition: border-color 0.4s ease;
      border-left: 2px solid transparent;
    }

    .pillar:hover {
      border-left-color: var(--accent);
    }

    /* ===== CTA SECTION — breathing glow ===== */
    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      width: 500px; height: 500px;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgb(176 140 93 / 6%), transparent 70%);
      animation: breatheGlow 6s ease-in-out infinite;
      z-index: 0;
      pointer-events: none;
    }

    @keyframes breatheGlow {
      0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
      50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
    }

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
      position: fixed; inset: 0; background: var(--bg); z-index: 200;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 8px;
      opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
    }
    .mobile-menu.active { opacity: 1; pointer-events: all; }

    .mobile-menu-close {
      position: absolute; top: 24px; right: 32px;
      background: none; border: none; color: var(--ink);
      font-size: 1.5rem; cursor: pointer; padding: 12px;
    }

    .mobile-menu a {
      font-weight: 300; font-size: clamp(1.5rem, 5vw, 2.5rem);
      letter-spacing: 0.06em; text-transform: lowercase;
      color: var(--ink-2); display: block; padding: 12px 0;
      transition: color 0.2s ease;
    }
    .mobile-menu a:hover { color: var(--ink); }
    .mobile-menu a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

    .contact-form-status {
      min-height: 22px;
      margin: 0;
      font-size: 14px;
      color: var(--ink-2);
    }

    .contact-form-status.is-success {
      color: #94d9b1;
    }

    .contact-form-status.is-error {
      color: #ffb1b1;
    }

    button[disabled] {
      opacity: 0.7;
      cursor: progress;
    }

    .blog-post-body p {
      margin: 0;
    }

    /* ===== FREE-SECTION BLOCKS ===== */
    .freeblocks-section {
      padding: 48px 0;
    }
    .freeblocks-container {
      display: grid;
      gap: 32px;
    }
    .freeblock {
      max-width: 920px;
      margin: 0 auto;
      width: 100%;
    }
    .freeblock-heading {
      font-weight: 300;
      letter-spacing: -0.01em;
      color: var(--ink);
    }
    h1.freeblock-heading { font-size: clamp(2.5rem, 6vw, 4rem); }
    h2.freeblock-heading { font-size: clamp(2rem, 4vw, 2.75rem); }
    h3.freeblock-heading { font-size: clamp(1.5rem, 3vw, 1.875rem); }
    h4.freeblock-heading { font-size: 1.25rem; }
    h5.freeblock-heading { font-size: 1.05rem; }
    h6.freeblock-heading { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }
    .freeblock-paragraph {
      color: var(--ink-2);
      line-height: 1.85;
      font-size: 17px;
    }
    .freeblock-paragraph p { margin: 0 0 1em; }
    .freeblock-paragraph p:last-child { margin-bottom: 0; }
    .freeblock-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    .freeblock-cta {
      display: flex;
      justify-content: flex-start;
    }
    .freeblock-divider {
      border: 0;
      border-top: 1px solid var(--border);
      margin: 0 auto;
      max-width: 920px;
    }
    .freeblock-spacer { display: block; }
    .freeblock-video-frame {
      position: relative;
      aspect-ratio: 16 / 9;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
    }
    .freeblock-video-frame iframe {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      border: 0;
    }
    .freeblock-video-empty {
      display: flex; align-items: center; justify-content: center;
      color: var(--ink-2);
      font-size: 14px;
      text-align: center;
      padding: 24px;
    }
    .freeblock-video-caption {
      margin-top: 8px;
      font-size: 13px;
      color: var(--ink-2);
    }
    .freeblock-quote {
      border-left: 2px solid var(--accent);
      padding: 8px 0 8px 24px;
      font-style: italic;
    }
    .freeblock-quote-text { font-size: 1.25rem; line-height: 1.6; color: var(--ink); margin: 0 0 8px; }
    .freeblock-quote-author { font-size: 13px; color: var(--ink-2); font-style: normal; letter-spacing: 0.05em; }
    .freeblock-columns {
      display: grid;
      gap: 32px;
    }
    .freeblock-columns-col { display: flex; flex-direction: column; gap: 12px; }
    .freeblock-columns-heading { color: var(--ink); font-weight: 400; font-size: 1.1rem; }
    .freeblock-columns-body { color: var(--ink-2); line-height: 1.7; font-size: 15px; }
    @media (max-width: 720px) {
      .freeblock-columns { grid-template-columns: 1fr !important; }
    }

