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

    :root {
      /* StoryFly Editorial Creme */
      --bg:               #F4F1EC;
      --bg-2:             #EAE4D6;
      --card:             #FFFFFF;
      --ink:              #141310;
      --ink-2:            #2B2823;
      --muted:            #6B655C;
      --accent:           #E7542A;
      --accent-dark:      #C93B1C;
      --line:             rgba(20,19,16,0.10);

      /* Aliases for existing code */
      --accent-light:         #E7542A;
      --color-ink:            #141310;
      --color-paper:          #F4F1EC;
      --color-canvas:         #EAE4D6;
      --color-primary:        #E7542A;
      --color-primary-light:  #E7542A;
      --color-primary-muted:  #F9E5DE;
      --color-signal:         #E7542A;
      --color-text-primary:   #2B2823;
      --color-text-secondary: #6B655C;
      --color-border:         rgba(20,19,16,0.10);
      --color-logo:           #141310;
      --text-primary:         #2B2823;
      --text-heading:         #141310;
      --text-muted:           #6B655C;
      --border:               rgba(20,19,16,0.10);
      --off-white:            #F4F1EC;
      --darker:               #F4F1EC;
      --dark:                 #EAE4D6;
      --mid:                  #6B655C;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--color-paper);
      color: var(--color-text-primary);
      font-family: 'Inter', sans-serif;
      line-height: 1.5;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--color-text-primary);
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.5rem 4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
      backdrop-filter: none;
      border-bottom: none;
      transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
    }

    nav.scrolled {
      background: #2B2823;
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    nav.scrolled .nav-links a { color: rgba(250,250,250,0.75); }
    nav.scrolled .nav-links a:hover { color: #E7542A; }

    .logo img { height: 30px; width: auto; filter: brightness(0) invert(1); }

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

    .nav-links a {
      color: rgba(250,250,250,0.82);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: #E7542A; }

    nav.scrolled .nav-links a { color: rgba(250,250,250,0.82); }
    nav.scrolled .nav-links a:hover { color: #E7542A; }

    nav { gap: 1.5rem; }
    .nav-links { flex: 1; justify-content: center; }
    .lang-switcher { margin-left: 0 !important; margin-right: 0 !important; }

    .nav-cta {
      background: #E7542A !important;
      color: #F4F1EC !important;
      padding: 0.6rem 1.5rem;
      border-radius: 100px;
      font-weight: 700 !important;
      text-decoration: none;
      font-size: 0.9rem;
      white-space: nowrap;
    }


    .hero h1 {
      color: #FFFFFF !important;
    }
    .hero h1 span {
      color: #FFFFFF !important;
    }

    /* HERO */
    .hero {
      position: relative;
      width: 100%;
      height: 70vh;
      overflow: hidden;
      background: var(--color-ink);
    }

    .hero video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    /* dark gradient overlay so text is readable */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 18%),
        linear-gradient(
          to right,
          rgba(61,61,78,0.7) 0%,
          rgba(61,61,78,0.35) 55%,
          rgba(61,61,78,0.05) 100%
        );
      z-index: 1;
    }

    /* bottom fade into stats bar (Blekk) */
    .hero-overlay::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 180px;
      background: linear-gradient(to top, var(--color-ink), transparent);
    }

    .hero-left {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 4rem;
      max-width: 680px;
    }

    .hero-right { display: none; }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: left;
      max-width: 100%;
      padding: 0;
    }

    .hero-tag {
      display: inline-block;
      background: rgba(231,84,42,0.08);
      border: 1px solid rgba(20,19,16,0.10);
      color: #E7542A;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.4rem 1.1rem;
      border-radius: 100px;
      margin-bottom: 1.6rem;
    }

    .hero h1 {
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
      color: var(--color-paper);
    }

    .hero h1 span { color: #FFFFFF; }

    .hero p {
      font-size: 1.1rem;
      line-height: 1.75;
      margin-bottom: 2.5rem;
      max-width: 440px;
      color: rgba(255,255,255,0.85);
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--color-primary);
      color: #F4F1EC;
      padding: 0.9rem 2rem;
      border-radius: 100px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 40px rgba(231,84,42,0.25);
    }

    .btn-secondary {
      background: transparent;
      color: var(--color-text-primary);
      padding: 0.9rem 2rem;
      border-radius: 100px;
      font-weight: 500;
      font-size: 0.95rem;
      text-decoration: none;
      border: 1px solid rgba(20,19,16,0.10);
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-secondary:hover {
      border-color: #E7542A;
      background: rgba(231,84,42,0.08);
    }

    /* btn-secondary on dark hero bg */
    .hero .btn-secondary {
      color: rgba(250,250,250,0.9);
      border-color: rgba(250,250,250,0.35);
    }
    .hero .btn-secondary:hover {
      border-color: #FFFFFF;
      background: rgba(255,255,255,0.1);
      color: #FFFFFF;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 2.5rem;
      left: 4rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-text-secondary);
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      z-index: 3;
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: transparent;
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; }
      50% { opacity: 1; }
    }

    /* SECTION ALTERNATING BACKGROUNDS */
    .bg-darker { background: var(--color-paper); }
    .bg-dark    { background: var(--color-canvas); }
    .bg-mid     { background: #3A4F66; }
    .bg-lilla   { background: var(--color-canvas); }
    .bg-canvas  { background: var(--color-canvas); }
    .bg-paper   { background: var(--color-paper); }
    .bg-kull    { background: var(--color-paper); }
    .bg-blekk   { background: var(--color-ink); }
    .bg-skifer  { background: #2B2823; }

    /* override default transparent section bg */
    section { background: transparent; }

    /* full-bleed wrappers for alternating bands */
    .section-band {
      width: 100%;
    }
    .section-band.bg-dark {
      background: var(--color-canvas);
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid rgba(20,19,16,0.10);
    }
    .section-band.bg-darker {
      background: var(--color-paper);
    }
    .section-band.bg-mid {
      background: var(--color-ink);
      border-top: none;
      border-bottom: none;
    }
    .section-band.bg-canvas {
      background: var(--color-canvas);
      border-top: none;
      border-bottom: none;
    }
    .section-band.bg-paper {
      background: var(--color-paper);
      border-top: none;
      border-bottom: none;
    }
    .section-band.bg-lilla {
      background: var(--color-canvas);
      border-top: none;
      border-bottom: none;
    }
    .section-band.bg-kull {
      background: var(--color-paper);
      border-top: none;
      border-bottom: none;
    }
    .section-band.bg-blekk {
      background: var(--color-ink);
      border-top: none;
      border-bottom: none;
    }

    /* Stats and CTA go truly full-bleed */
    .stats-bar {
      width: 100vw;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
    }

    /* SECTIONS */
    section {
      padding: 5rem 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* STATS */
    .stats-bar {
      border-top: none;
      border-bottom: none;
      padding: 2.5rem 4rem;
      background: transparent !important;
    }

    .stats-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .stat {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0 2rem;
      border-right: 1px solid rgba(20,19,16,0.12);
    }

    .stat:first-child { padding-left: 0; }
    .stat:last-child { border-right: none; }

    .stat-icon {
      width: 38px;
      height: 38px;
      background: rgba(231,84,42,0.08);
      border: 1px solid rgba(20,19,16,0.12);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #E7542A;
      flex-shrink: 0;
    }

    .stat-text { display: flex; flex-direction: column; gap: 0.15rem; }

    .stat-number {
      font-size: 0.92rem;
      font-weight: 700;
      color: #F4F1EC;
      letter-spacing: -0.01em;
      display: block;
    }

    .stat-label {
      font-size: 0.78rem;
      color: rgba(250,250,250,0.65);
      line-height: 1.4;
    }

    .section-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #E7542A;
      margin-bottom: 1rem;
    }

    .section-title span { color: inherit; }

    .section-title {
      color: var(--color-text-primary);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
      color: var(--color-text-primary);
    }

    .section-desc {
      color: var(--color-text-secondary);
      font-size: 1.05rem;
      color: var(--color-text-secondary);
      line-height: 1.8;
      max-width: 500px;
      margin-bottom: 4rem;
    }

    /* PROCESS FLOW */
    .process-flow {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
      align-items: center;
      margin: 3rem auto 4rem;
      max-width: 1100px;
    }
    .process-arrow {
      color: var(--color-text-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 0.5rem;
      padding-bottom: 3.5rem;
    }
    .process-step { min-width: 0; }
    .process-step-inner {
      background: none;
      border: none;
      padding: 0 0.8rem 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.6rem;
      text-align: center;
    }
    .process-step-main .process-step-inner { border-top: none; }
    .process-step-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      color: var(--color-text-secondary);
    }
    .process-illus-large {
      width: 100%;
      aspect-ratio: 5/4;
    }
    .process-illus-large svg { width: 100%; height: 100%; }
    .process-desc {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.5;
      text-align: center;
    }
    @media (max-width: 900px) {
      .process-flow {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .process-arrow { transform: rotate(90deg); padding: 0; margin: 0.5rem auto; }
      .process-illus-large { max-width: 280px; margin: 0 auto; }
    }

    /* FEATURES */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .feature-card {
      background: none;
      border: none;
      border-top: 1px solid var(--color-border);
      border-radius: 0;
      padding: 2rem 1rem;
    }

    .feature-card:hover { transform: none; }

    .feature-icon {
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      color: #E7542A;
      flex-shrink: 0;
    }

    .feature-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      color: var(--color-text-primary);
    }

    .feature-card p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* SPLIT */
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .split-image {
      position: relative;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .split-image-inner {
      width: 100%;
      height: 100%;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .split-image-glow {
      width: 160px;
      height: 160px;
      background: var(--color-primary);
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.18;
      position: absolute;
    }

    .split-image-icon {
      position: relative;
      opacity: 0.5;
    }

    .split-text .section-desc { max-width: 100%; }

    .bg-blekk .split-text .section-title,
    .bg-blekk .split-text .section-desc,
    .bg-blekk .split-text .check-list li { color: #FFFFFF; }
    .bg-blekk .split-text .section-title { color: #FFFFFF; }
    .bg-blekk .split-text .section-desc { color: rgba(255,255,255,0.75); }
    .bg-blekk .check-icon { color: #E7542A; }

    .check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .check-list li {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      font-size: 1rem;
    }

    .check-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(231,84,42,0.08);
      color: #E7542A;
      font-size: 0.75rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* TESTIMONIALS */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .testimonial {
      background: none;
      border: none;
      border-top: 1px solid var(--color-border);
      border-radius: 0;
      padding: 1.8rem 1rem;
    }

    .testimonial:hover { border-color: rgba(20,19,16,0.10); }

    .testimonial-stars {
      color: #E7542A;
      font-size: 0.85rem;
      margin-bottom: 1rem;
      letter-spacing: 2px;
    }

    .testimonial p {
      font-size: 0.97rem;
      color: var(--color-text-secondary);
      line-height: 1.75;
      margin-bottom: 1.2rem;
    }

    .testimonial-author { display: flex; align-items: center; gap: 0.8rem; }

    .author-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #E7542A;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--dark);
    }

    .author-name { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
    .author-sub { font-size: 0.75rem; color: var(--muted); }

    /* CTA */
    .cta-section {
      border-top: none;
      border-bottom: none;
      padding: 12rem 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      background: transparent;
    }

    .cta-glow { display: none; }

    .cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }

    .cta-inner h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 1rem;
      color: #F4F1EC;
    }

    .cta-inner p {
      color: rgba(250,250,250,0.75);
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 2.5rem;
    }

    /* FOOTER */
    footer {
      background: var(--color-ink);
      padding: 3rem 4rem;
      border-top: 1px solid rgba(255,255,255,0.07);
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
    }

    .footer-copy { font-size: 0.82rem; color: rgba(250,250,250,0.45); }

    .footer-meta {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.6rem;
      text-align: right;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      color: rgba(250,250,250,0.35);
      font-size: 0.82rem;
    }

    .footer-links a {
      color: rgba(250,250,250,0.70);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: #FFFFFF; }

    /* LEGAL */
    .legal-band {
      scroll-margin-top: 96px;
    }

    #terms-and-privacy {
      scroll-margin-top: 96px;
    }

    .legal-updated {
      margin: -0.35rem 0 1rem;
      color: var(--text-muted, #64748b);
      font-size: 0.875rem;
    }

    .legal-confirmation {
      max-width: 78ch;
      margin: 1.5rem 0 0;
      color: var(--text-muted, #64748b);
      font-size: 0.875rem;
      line-height: 1.7;
      white-space: pre-line;
    }

    .legal-section {
      padding: 6rem 4rem;
    }

    .legal-header .section-desc {
      margin-bottom: 3rem;
      max-width: 720px;
    }

    .legal-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 2rem;
      align-items: start;
    }

    .legal-card {
      max-width: 960px;
      border-top: 1px solid var(--color-border);
      padding-top: 2rem;
    }

    .legal-card h3 {
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 1.2rem;
      color: var(--color-text-primary);
    }

    .legal-card details {
      margin-bottom: 0.75rem;
      border: 1px solid var(--color-border);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.35);
      overflow: hidden;
      transition: background-color 0.2s, border-color 0.2s;
    }

    .legal-card details[open] {
      border-color: rgba(20, 19, 16, 0.18);
      background: rgba(255, 255, 255, 0.72);
    }

    .legal-card summary {
      position: relative;
      cursor: pointer;
      font-weight: 700;
      color: var(--color-text-primary);
      line-height: 1.45;
      list-style: none;
      padding: 1.15rem 3.25rem 1.15rem 1.25rem;
    }

    .legal-card summary::-webkit-details-marker {
      display: none;
    }

    .legal-card summary::after {
      content: '+';
      position: absolute;
      top: 50%;
      right: 1.25rem;
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      background: rgba(20, 19, 16, 0.07);
      font-size: 1.15rem;
      font-weight: 500;
      line-height: 1.4rem;
      text-align: center;
      transform: translateY(-50%);
    }

    .legal-card details[open] summary::after {
      content: '−';
    }

    .legal-body {
      max-width: 78ch;
      border-top: 1px solid var(--color-border);
      padding: 0.25rem 1.25rem 1.25rem;
    }

    .legal-card details p,
    .legal-card details li {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.75;
    }

    .legal-card details p {
      margin: 1rem 0 0;
    }

    .legal-card details ul {
      margin: 1rem 0 0;
      padding-left: 1.35rem;
    }

    .legal-card details li + li {
      margin-top: 0.45rem;
    }

    .legal-card:target {
      scroll-margin-top: 96px;
    }

    /* AI CHAT SECTION */
    .chat-section {
      border-top: none;
      border-bottom: none;
      padding: 8rem 4rem;
    }

    .chat-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
      align-items: stretch;
    }

    .chat-header .section-title span { color: inherit; }
    .chat-header .section-desc { margin-bottom: 0; }

    .chat-widget {
      background: var(--color-paper);
      border: 1px solid rgba(20,19,16,0.10);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .chat-messages {
      padding: 1.5rem;
      min-height: 0;
      max-height: 400px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      scroll-behavior: smooth;
    }

    .chat-messages::-webkit-scrollbar { width: 4px; }
    .chat-messages::-webkit-scrollbar-track { background: transparent; }
    .chat-messages::-webkit-scrollbar-thumb { background: rgba(20,19,16,0.10); border-radius: 2px; }

    .chat-msg { display: flex; gap: 0.6rem; align-items: flex-end; }
    .chat-msg.user { flex-direction: row-reverse; }

    .msg-bubble {
      max-width: 80%;
      padding: 0.75rem 1rem;
      border-radius: 16px;
      font-size: 0.95rem;
      white-space: pre-wrap;
      overflow-wrap: anywhere;
    }

    .chat-msg.assistant .msg-bubble {
      background: #EAE4D6;
      border: 1px solid rgba(20,19,16,0.15);
      color: #2B2823;
      border-bottom-left-radius: 4px;
    }

    .chat-msg.user .msg-bubble {
      background: var(--color-primary);
      color: #FDFCFF;
      font-weight: 500;
      border-bottom-right-radius: 4px;
    }

    .msg-typing {
      display: flex;
      gap: 4px;
      align-items: center;
      padding: 0.75rem 1rem;
    }

    .msg-typing span {
      width: 6px; height: 6px;
      background: var(--color-primary);
      border-radius: 50%;
      opacity: 0.4;
      animation: typingDot 1.2s ease-in-out infinite;
    }
    .msg-typing span:nth-child(2) { animation-delay: 0.2s; }
    .msg-typing span:nth-child(3) { animation-delay: 0.4s; }

    @keyframes typingDot {
      0%, 100% { opacity: 0.4; transform: translateY(0); }
      50% { opacity: 1; transform: translateY(-4px); }
    }

    .chat-suggestions {
      padding: 0 1.5rem 1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .chat-suggestions button {
      background: #FFFFFF;
      border: 1px solid rgba(20,19,16,0.20);
      color: #2B2823;
      padding: 0.4rem 0.9rem;
      border-radius: 100px;
      font-size: 0.8rem;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }

    .chat-suggestions button:hover {
      background: rgba(231,84,42,0.08);
      border-color: #E7542A;
      color: #E7542A;
    }

    .chat-input-row {
      display: flex;
      align-items: flex-end;
      gap: 0.75rem;
      padding: 1rem 1.5rem 0.5rem;
      border-top: 1px solid var(--color-border);
    }

    .chat-input-row textarea {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      color: var(--text-primary);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      line-height: 1.5;
      resize: none;
      min-height: 72px;
      max-height: 180px;
      overflow-y: auto;
    }

    .chat-input-row textarea::placeholder { color: var(--color-text-secondary); }

    .chat-send {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--color-primary);
      color: #FDFCFF;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .chat-send:hover {
      transform: scale(1.08);
      box-shadow: 0 4px 16px rgba(231,84,42,0.15);
    }

    .chat-footer-row {
      padding: 0.4rem 1.5rem 1rem;
      display: flex;
      justify-content: flex-end;
    }

    .char-count { font-size: 0.72rem; color: var(--color-text-secondary); }

    @media (max-width: 768px) {
      .chat-section { padding: 5rem 1.5rem; }
      .chat-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .chat-section { padding: 4rem 1.5rem !important; }
    }

    /* USE CASES */
    .use-cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .use-case-card {
      background: none;
      border: none;
      border-top: 1px solid var(--color-border);
      border-radius: 0;
      padding: 2rem 1rem;
    }

    .use-case-card:hover { transform: none; }

    .use-case-icon {
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      color: #E7542A;
      flex-shrink: 0;
    }

    .use-case-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      color: var(--color-text-primary);
    }

    .use-case-card p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }

    .use-case-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
    }

    .use-case-tags span {
      background: rgba(231,84,42,0.08);
      border: 1px solid rgba(159,145,245,0.13);
      color: var(--color-text-secondary);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      padding: 0.25rem 0.7rem;
      border-radius: 100px;
    }

    @media (max-width: 768px) {
      .use-cases-grid { grid-template-columns: 1fr; }
    }

    /* AUDIENCE GRID */
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .audience-card {
      background: var(--color-paper);
      border: 1px solid rgba(20,19,16,0.10);
      border-radius: 18px;
      padding: 1.8rem;
      display: flex;
      gap: 1.1rem;
      align-items: flex-start;
      transition: border-color 0.3s, transform 0.3s;
    }

    .audience-card:hover {
      border-color: rgba(159,145,245,0.22);
      transform: translateY(-4px);
    }

    .audience-icon {
      width: 42px; height: 42px;
      background: rgba(231,84,42,0.08);
      border: 1px solid rgba(20,19,16,0.10);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: #E7542A;
      flex-shrink: 0;
    }

    .audience-text h3 { font-size: 1rem; font-weight: 700; color: var(--color-text-primary); margin-bottom: 0.5rem; }
    .audience-text p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

    @media (max-width: 768px) { .audience-grid { grid-template-columns: 1fr; } }

    /* COMPARISON TABLE */
    .comparison-table {
      margin-top: 3rem;
      border: 1px solid rgba(20,19,16,0.10);
      border-radius: 18px;
      overflow: hidden;
    }

    .comparison-header {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      background: rgba(159,145,245,0.04);
      border-bottom: 1px solid rgba(20,19,16,0.10);
      padding: 1rem 1.5rem;
    }

    .comparison-col-head {
      text-align: center;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--color-text-secondary);
    }

    .storyfly-col { color: #E7542A; }

    .col-head-badge {
      background: rgba(231,84,42,0.08);
      border: 1px solid rgba(20,19,16,0.10);
      padding: 0.25rem 0.8rem;
      border-radius: 100px;
      font-size: 0.82rem;
      font-weight: 700;
      color: #E7542A;
    }

    .comparison-row {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid rgba(20,19,16,0.10);
      align-items: center;
    }

    .comparison-row:last-child { border-bottom: none; }
    .comparison-row:nth-child(odd) { background: #EAE4D6; }

    .comparison-feature { font-size: 0.95rem; color: var(--color-text-secondary); }

    .comparison-val {
      text-align: center;
      font-size: 0.92rem;
      color: rgba(68,69,89,0.45);
    }

    .comparison-val.win { color: #E7542A; font-weight: 600; }
    .comparison-val.lose { color: rgba(20,19,16,0.10); }

    @media (max-width: 768px) {
      .comparison-header, .comparison-row { grid-template-columns: 1.5fr 1fr 1fr; padding: 0.8rem 1rem; }
      .comparison-feature { font-size: 0.82rem; }
      .comparison-table { font-size: 0.8rem; overflow-x: auto; }
    }

    /* CUSTOMER INTERVIEWS */
    .interviews-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .interview-card {
      background: none;
      border: none;
      border-top: 1px solid var(--color-border);
      border-radius: 0;
      padding: 2.2rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .interview-card:hover { border-color: rgba(20,19,16,0.10); }

    .interview-quote { line-height: 0; }

    .interview-text {
      font-size: 1.05rem;
      color: var(--color-text-secondary);
      line-height: 1.7;
      flex: 1;
    }

    .interview-author {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .interview-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: #E7542A;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.78rem; font-weight: 700;
      color: var(--dark); flex-shrink: 0;
    }

    .interview-author-info { flex: 1; }
    .interview-name { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
    .interview-role { font-size: 0.78rem; color: var(--muted); }

    .interview-play-btn {
      display: flex; align-items: center; gap: 0.5rem;
      background: rgba(231,84,42,0.08);
      border: 1px solid rgba(20,19,16,0.10);
      color: #E7542A;
      padding: 0.5rem 1rem;
      border-radius: 100px;
      font-size: 0.8rem; font-weight: 600;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s, border-color 0.2s;
    }

    .interview-play-btn:hover {
      background: rgba(20,19,16,0.10);
      border-color: #E7542A;
    }

    @media (max-width: 768px) { .interviews-grid { grid-template-columns: 1fr; } }

    /* PRICING */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .pricing-card {
      background: none;
      border: none;
      border-top: 1px solid var(--color-border);
      border-radius: 0;
      padding: 2.5rem 1rem;
      position: relative;
    }

    .pricing-card:hover { transform: none; }

    .pricing-card-featured {
      border-top-color: var(--color-text-secondary);
    }

    .pricing-icon {
      width: 44px; height: 44px;
      background: none;
      border: none;
      display: flex; align-items: center; justify-content: center;
      color: #E7542A; margin-bottom: 1.2rem;
    }

    .pricing-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }

    .pricing-amount { font-size: 2rem; font-weight: 800; color: var(--color-text-primary); letter-spacing: -0.03em; margin-bottom: 0.8rem; }
    .pricing-amount .pricing-unit { font-size: 1rem; font-weight: 400; color: var(--muted); }

    .pricing-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(20,19,16,0.10); }

    .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .pricing-features li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; color: var(--color-text-secondary); }

    .pricing-note {
      margin-top: 2rem;
      display: flex; align-items: center; gap: 0.6rem;
      font-size: 0.88rem; color: var(--color-text-secondary);
      justify-content: center;
    }

    @media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }

    /* FAQ */
    .faq-list {
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 0;
      max-width: 800px;
    }

    .faq-item {
      border-bottom: 1px solid var(--color-border);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      color: var(--text-primary);
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      text-align: left;
      padding: 1.4rem 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      transition: color 0.2s;
    }

    .faq-question:hover { color: #E7542A; }

    .faq-arrow {
      flex-shrink: 0;
      transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
      color: var(--muted);
    }

    .faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
    .faq-question[aria-expanded="true"] { color: #E7542A; }

    .faq-answer {
      display: none;
      padding-bottom: 1.4rem;
    }

    .faq-answer.open { display: block; }

    .faq-answer p { font-size: 0.97rem; color: var(--color-text-secondary); line-height: 1.75; }

    /* LIGHTBOX */
    .lightbox-overlay {
      position: fixed;
      inset: 0;
      background: rgba(18,17,30,0.95);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
      backdrop-filter: blur(8px);
    }

    .lightbox-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .lightbox-inner {
      position: relative;
      width: 90vw;
      max-width: 1100px;
      aspect-ratio: 16/9;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px #F9E5DE;
      transform: scale(0.92);
      transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
    }

    .lightbox-overlay.active .lightbox-inner {
      transform: scale(1);
    }

    .lightbox-inner video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .lightbox-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(18,17,30,0.7);
      border: 1px solid rgba(20,19,16,0.10);
      color: var(--text-primary);
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s;
      z-index: 2;
      line-height: 1;
    }

    .lightbox-close:hover {
      background: rgba(20,19,16,0.10);
      border-color: #E7542A;
    }

    /* HAMBURGER */
    /* LANGUAGE SWITCHER */
    .lang-switcher {
      display: flex;
      align-items: center;
      margin-left: 1rem;
    }
    .lang-select {
      background: transparent;
      border: 1px solid rgba(250,250,250,0.3);
      color: rgba(250,250,250,0.8);
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      padding: 0.3rem 0.6rem;
      border-radius: 6px;
      cursor: pointer;
      outline: none;
      transition: border-color 0.2s, color 0.2s;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(250,250,250,0.6)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.5rem center;
      padding-right: 1.6rem;
    }
    .lang-select option {
      background: #141310;
      color: #F4F1EC;
    }
    .lang-select:hover { border-color: rgba(250,250,250,0.6); color: #F4F1EC; }
    nav.scrolled .lang-select {
      border-color: rgba(61,61,78,0.3);
      color: var(--color-text-secondary);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236E6E85' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    }
    nav.scrolled .lang-select:hover { border-color: var(--color-primary); color: var(--color-text-primary); }
    @media (max-width: 768px) {
      .lang-switcher { margin-left: 0; margin-right: 0.5rem; }
      .lang-select { font-size: 0.78rem; }
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 101;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--off-white);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* MOBILE MENU */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--color-paper);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .mobile-menu.open {
      opacity: 1;
      pointer-events: all;
    }

    .mobile-menu a {
      color: var(--text-primary);
      text-decoration: none;
      font-size: 1.5rem;
      font-weight: 600;
      transition: color 0.2s;
    }

    .mobile-menu a:hover { color: #E7542A; }

    .mobile-menu .mobile-cta {
      background: var(--color-primary);
      color: var(--dark) !important;
      padding: 0.8rem 2.5rem;
      border-radius: 100px;
      font-size: 1rem !important;
    }

    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .mobile-menu { display: flex; }
    }

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

    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* Keyboard focus visibility (a11y). Accent ring reads on both light and dark
       sections; the outline follows each element's own border-radius. */
    a:focus-visible,
    button:focus-visible,
    select:focus-visible,
    textarea:focus-visible,
    [tabindex]:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    /* Respect reduced-motion: neutralise reveals, loops, smooth scroll and hovers,
       and make sure reveal content is shown rather than left at opacity 0. */
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .reveal { opacity: 1 !important; transform: none !important; }
    }

    @media (max-width: 768px) {
      nav {
        padding: 1.2rem 0.75rem;
        gap: 0.5rem;
      }
      nav .nav-links { display: none; }
      nav .logo {
        flex: 0 1 92px;
        min-width: 0;
      }
      nav .logo img {
        display: block;
        max-width: 100%;
        height: auto;
      }
      nav .lang-switcher {
        flex: 0 1 84px;
        min-width: 0;
        margin: 0;
      }
      nav .lang-select {
        width: 100%;
        min-width: 0;
      }
      nav .nav-cta {
        flex: 0 0 auto;
        padding: 0.55rem 0.7rem;
        font-size: 0.74rem;
      }
      nav .hamburger { flex: 0 0 auto; }

      /* Hero */
      .hero { height: 75vh; min-height: 480px; }
      .hero-left {
        padding: 0 1.5rem;
        max-width: 100%;
        justify-content: flex-end;
        padding-bottom: 4rem;
      }
      .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
      .hero p { font-size: 0.95rem; max-width: 100%; }
      .hero-buttons { flex-direction: column; align-items: flex-start; }
      .hero-buttons .btn-primary,
      .hero-buttons .btn-secondary { width: 100%; text-align: center; }
      .hero-overlay {
        background: linear-gradient(
          to top,
          rgba(18,17,30,0.92) 0%,
          rgba(18,17,30,0.5) 50%,
          rgba(18,17,30,0.2) 100%
        );
      }
      .scroll-indicator { display: none; }

      /* Sections */
      section { padding: 4rem 1.5rem; }
      .section-band { overflow: hidden; }
      .stats-bar { padding: 2rem 1.5rem; }
      .section-band[style*='padding: 2rem 4rem'] { padding: 1.5rem !important; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
      .stat { padding: 1rem; border-right: 1px solid rgba(20,19,16,0.10); border-bottom: 1px solid rgba(20,19,16,0.10); }
      .stat:nth-child(2n) { border-right: none; }
      .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
      .stat:first-child { padding-left: 1rem; }
      .features-grid { grid-template-columns: 1fr; }
      .split { grid-template-columns: 1fr; gap: 2.5rem; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .cta-section { padding: 6rem 1.5rem; }
      .cta-inner h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
      .legal-section { padding: 4rem 1.5rem; }
      .legal-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      footer { padding: 2rem 1.5rem; }
      .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
      .footer-meta { align-items: center; text-align: center; }
      .footer-links { justify-content: center; flex-wrap: wrap; }

      /* Lightbox */
      .lightbox-inner { width: 95vw; }
    }

    @media (max-width: 480px) {
      .hero { height: 85vh; }
      .stats-inner { grid-template-columns: 1fr 1fr; }
    }
