/* ============ TOKENS ============ */
  :root {
    --ink: #1a0f2e;
    --ink-soft: #3d2c5c;
    --paper: #fdfaf3;
    --paper-warm: #f7eedd;
    --plum: #4a1d6e;
    --violet: #7c3aed;
    --violet-bright: #9d4dff;
    --violet-deep: #5b21b6;

    /* ORANGE family */
    --orange: #ff7a45;
    --orange-hot: #ff5e1a;
    --orange-soft: #ffb088;
    --peach: #ffd9c2;

    --cream: #fff5e1;
    --gold: #fbbf24;
    --rule: rgba(26, 15, 46, 0.12);

    --serif: "Fraunces", "Times New Roman", serif;
    --sans: "Plus Jakarta Sans", -apple-system, sans-serif;
    --mono: "JetBrains Mono", monospace;

    --maxw: 1320px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.06;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  ::selection { background: var(--orange); color: var(--paper); }
  a { color: inherit; text-decoration: none; }

  /* ============ NAV ============ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(253, 250, 243, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule);
  }
  .logo-wrap { display: flex; align-items: center; gap: 12px; }
  .logo-img { width: 44px; height: 44px; object-fit: contain; }
  .logo-text {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.04em;
    font-style: italic;
    color: var(--plum);
  }
  .nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
  .nav-links a { position: relative; transition: color 0.2s; }
  .nav-links a:hover { color: var(--orange-hot); }
  .nav-cta {
    background: var(--ink);
    color: var(--paper);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.2s, background 0.2s;
  }
  .nav-cta:hover { background: var(--orange-hot); transform: translateY(-1px); }

  @media (max-width: 768px) { .nav-links { display: none; } }

  /* ============ HERO ============ */
  .hero {
    min-height: 100vh;
    padding: 120px 32px 80px;
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse 70% 60% at 88% 22%, rgba(255, 122, 69, 0.22) 0%, transparent 55%),
      radial-gradient(ellipse 65% 70% at 8% 78%, rgba(124, 58, 237, 0.18) 0%, transparent 55%),
      var(--paper);
  }

  .hero-inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }

  .hero-top-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 48px;
  }
  @media (max-width: 900px) { .hero-top-row { grid-template-columns: 1fr; } }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum);
    animation: fadeUp 0.8s 0.1s both;
  }
  .eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--plum); }
  .eyebrow .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--orange-hot);
    box-shadow: 0 0 0 4px rgba(255, 94, 26, 0.2);
    animation: pulse 2s infinite;
  }

  .hero-mascot {
    width: 160px;
    height: auto;
    animation: float 4s ease-in-out infinite, fadeIn 1s 0.3s both;
    filter: drop-shadow(0 20px 40px rgba(74, 29, 110, 0.3));
  }
  @media (max-width: 900px) { .hero-mascot { width: 110px; } }

  h1.display {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(48px, 9vw, 144px);
    line-height: 0.92;
    letter-spacing: -0.045em;
    color: var(--ink);
    animation: fadeUp 0.9s 0.2s both;
  }
  h1.display em { font-style: italic; font-weight: 400; color: var(--violet); }
  h1.display .orange-word { font-style: italic; font-weight: 400; color: var(--orange-hot); }
  h1.display .underline-mark { position: relative; display: inline-block; }
  h1.display .underline-mark::after {
    content: "";
    position: absolute;
    bottom: 0.08em;
    left: -2%;
    width: 104%;
    height: 0.12em;
    background: var(--gold);
    z-index: -1;
    transform: skew(-4deg);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    margin-top: 56px;
    align-items: end;
  }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

  .hero-lead {
    font-size: 20px;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 560px;
    animation: fadeUp 1s 0.4s both;
  }
  .hero-lead strong { color: var(--ink); font-weight: 600; }

  .hero-meta {
    border-top: 1px solid var(--rule);
    padding-top: 24px;
    font-family: var(--mono);
    font-size: 12px;
    line-height: 2;
    color: var(--ink-soft);
    animation: fadeUp 1s 0.5s both;
  }
  .hero-meta .row { display: flex; justify-content: space-between; gap: 16px; }
  .hero-meta .row span:first-child { opacity: 0.55; letter-spacing: 0.08em; }
  .hero-meta .row span:last-child { color: var(--ink); font-weight: 500; }

  .float-tag {
    position: absolute;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    color: var(--violet-bright);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
  }
  .float-tag-1 { top: 28%; right: 6%; font-size: 18px; transform: rotate(8deg); }
  .float-tag-2 { bottom: 22%; left: 4%; font-size: 16px; transform: rotate(-6deg); color: var(--orange); }

  /* Hide decorative float tags on tablet/mobile to prevent text overlap */
  @media (max-width: 1100px) {
    .float-tag { display: none; }
  }

  /* ============ MARQUEE ============ */
  .marquee {
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    background: var(--ink);
    color: var(--paper);
    overflow: hidden;
    padding: 22px 0;
  }
  .marquee-track {
    display: flex;
    gap: 64px;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    font-family: var(--serif);
    font-style: italic;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.02em;
  }
  .marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
  .marquee-track span::after { content: "✦"; color: var(--orange-hot); font-style: normal; font-size: 20px; }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ============ SECTION SHELL ============ */
  section.block { padding: 120px 32px; max-width: var(--maxw); margin: 0 auto; }
  .section-head {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 64px;
    margin-bottom: 64px;
    align-items: baseline;
  }
  @media (max-width: 768px) { .section-head { grid-template-columns: 1fr; gap: 16px; } }
  .section-num {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    border-top: 1px solid var(--ink);
    padding-top: 12px;
  }
  .section-num strong { display: block; color: var(--ink); margin-bottom: 4px; font-size: 18px; }

  h2.section-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--ink);
  }
  h2.section-title em { font-style: italic; color: var(--violet); }
  h2.section-title .orange { font-style: italic; color: var(--orange-hot); }

  /* ============ STORY ============ */
  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  @media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } }

  .story-prose {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
    color: var(--ink);
    max-width: 560px;
  }
  .story-prose p { margin-bottom: 24px; }
  .story-prose p:first-of-type::first-letter {
    font-family: var(--serif);
    font-size: 72px;
    font-weight: 600;
    float: left;
    line-height: 0.85;
    padding: 8px 12px 0 0;
    color: var(--orange-hot);
    font-style: italic;
  }
  .story-prose em {
    background: var(--gold);
    font-style: normal;
    padding: 0 6px;
    box-decoration-break: clone;
  }

  .timeline { border-left: 1px solid var(--rule); padding-left: 32px; position: relative; }
  .timeline-item { position: relative; padding-bottom: 36px; }
  .timeline-item:last-child { padding-bottom: 0; }
  .timeline-item::before {
    content: "";
    position: absolute;
    left: -38px;
    top: 6px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--violet);
  }
  .timeline-item.highlight::before {
    background: var(--orange-hot);
    border-color: var(--orange-hot);
    box-shadow: 0 0 0 5px rgba(255, 94, 26, 0.15);
  }
  .timeline-year {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--violet);
    margin-bottom: 6px;
    font-weight: 500;
  }
  .timeline-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .timeline-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

  /* ============ NUMBERS ============ */
  .numbers-wrap {
    background: var(--ink);
    color: var(--paper);
    padding: 100px 32px;
    position: relative;
    overflow: hidden;
  }
  .numbers-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 50% 50% at 20% 30%, rgba(157, 77, 255, 0.3) 0%, transparent 50%),
      radial-gradient(ellipse 60% 50% at 85% 75%, rgba(255, 94, 26, 0.22) 0%, transparent 55%);
    pointer-events: none;
  }
  .numbers-inner { max-width: var(--maxw); margin: 0 auto; position: relative; }
  .numbers-head {
    font-family: var(--serif);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 800px;
    margin-bottom: 64px;
  }
  .numbers-head em { font-style: italic; color: var(--gold); }
  .numbers-head .orange { color: var(--orange-hot); font-style: italic; }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    border-top: 1px solid rgba(253, 250, 243, 0.2);
    padding-top: 48px;
  }
  @media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

  .stat .stat-num {
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--paper);
  }
  .stat .stat-num sup {
    font-size: 0.4em;
    color: var(--orange-hot);
    vertical-align: super;
    font-style: italic;
  }
  .stat .stat-label {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: rgba(253, 250, 243, 0.6);
    margin-top: 12px;
    text-transform: uppercase;
    line-height: 1.4;
  }

  /* ============ PRODUCTS ============ */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
  }
  @media (max-width: 900px) { .products-grid { display: flex; flex-direction: column; } }

  .product-card {
    background: var(--paper-warm);
    border: 1px solid var(--rule);
    border-radius: 24px;
    padding: 36px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
  }
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -20px rgba(74, 29, 110, 0.2);
  }
  .product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(255, 122, 69, 0.1) 0%, transparent 40%);
    pointer-events: none;
  }

  .product-card.large { grid-column: span 7; }
  .product-card.small { grid-column: span 5; }
  .product-card.third { grid-column: span 4; }
  .product-card.feature {
    grid-column: span 12;
    background: linear-gradient(135deg, var(--plum) 0%, var(--violet) 60%, var(--orange-hot) 130%);
    color: var(--paper);
    border: none;
  }
  .product-card.feature::after {
    background: radial-gradient(circle at 80% 30%, rgba(251, 191, 36, 0.18) 0%, transparent 50%);
  }
  .product-card.feature:hover { box-shadow: 0 30px 80px -20px rgba(124, 58, 237, 0.5); }

  .product-tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .product-card.feature .product-tag { color: var(--gold); }
  .product-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

  .product-name {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
  }
  .product-card.feature .product-name { font-size: 56px; }
  .product-name em { font-style: italic; color: var(--orange-hot); }
  .product-card.feature .product-name em { color: var(--gold); }

  .product-desc {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
    flex-grow: 1;
  }
  .product-card.feature .product-desc { color: rgba(253, 250, 243, 0.9); font-size: 17px; max-width: 560px; }

  .product-link {
    margin-top: 24px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    align-self: flex-start;
  }
  .product-card.feature .product-link { color: var(--gold); }
  .product-link:hover { gap: 14px; }

  /* ============ VALUES ============ */
  .values-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--ink);
  }
  .value-row {
    display: grid;
    grid-template-columns: 80px 280px 1fr;
    gap: 48px;
    padding: 40px 0;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
    transition: padding 0.3s;
    cursor: default;
  }
  .value-row:hover { padding-left: 16px; }
  .value-row:hover .value-title { color: var(--violet); }
  @media (max-width: 768px) { .value-row { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; } }

  .value-num { font-family: var(--mono); font-size: 13px; color: var(--ink-soft); letter-spacing: 0.08em; }
  .value-title {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
    transition: color 0.3s;
  }
  .value-title em { font-style: italic; color: var(--orange-hot); }
  .value-desc { font-size: 16px; line-height: 1.55; color: var(--ink-soft); max-width: 520px; }

  .philosophy-cta {
    margin-top: 56px;
    display: flex;
    justify-content: center;
  }
  .philosophy-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 36px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    color: var(--ink);
    background: transparent;
    transition: background 0.3s, color 0.3s, gap 0.3s, transform 0.3s;
  }
  .philosophy-link:hover {
    background: var(--ink);
    color: var(--paper);
    gap: 24px;
    transform: translateY(-2px);
  }
  .philosophy-link-arrow {
    font-family: var(--sans);
    font-style: normal;
    color: var(--orange-hot);
    font-size: 18px;
    transition: transform 0.3s;
  }
  .philosophy-link:hover .philosophy-link-arrow {
    color: var(--gold);
    transform: translateX(4px);
  }

  /* ============ TEAM CTA ============ */
  .team-cta {
    background: var(--cream);
    padding: 120px 32px;
    position: relative;
    overflow: hidden;
  }
  .team-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle 400px at 82% 18%, rgba(255, 122, 69, 0.2) 0%, transparent 100%),
      radial-gradient(circle 500px at 8% 82%, rgba(124, 58, 237, 0.14) 0%, transparent 100%);
    pointer-events: none;
  }
  .team-cta-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  @media (max-width: 900px) { .team-cta-inner { grid-template-columns: 1fr; gap: 40px; } }

  .cta-mascot {
    width: 90px;
    height: auto;
    margin-bottom: 24px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 12px 24px rgba(74, 29, 110, 0.25));
  }

  .team-cta h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 6vw, 88px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
  }
  .team-cta h2 em { font-style: italic; color: var(--violet); }
  .team-cta h2 .orange { font-style: italic; color: var(--orange-hot); }
  .team-cta p {
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 500px;
    margin-bottom: 32px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--ink);
    color: var(--paper);
    padding: 18px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.2s, background 0.2s, gap 0.2s;
  }
  .btn-primary:hover {
    background: var(--orange-hot);
    transform: translateY(-2px);
    gap: 18px;
  }
  .btn-primary .arrow { transition: transform 0.2s; }
  .btn-primary:hover .arrow { transform: rotate(-45deg); }

  .perks-box {
    background: var(--paper);
    border: 1px solid var(--ink);
    border-radius: 20px;
    padding: 36px;
  }
  .perks-box h3 {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 24px;
  }
  .perks-list { list-style: none; }
  .perks-list li {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    padding: 14px 0;
    border-bottom: 1px dashed var(--rule);
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .perks-list li:last-child { border-bottom: none; }
  .perks-list li::before { content: "→"; color: var(--orange-hot); font-family: var(--sans); font-size: 16px; }

  /* ============ FOOTER ============ */
  footer { background: var(--ink); color: var(--paper); padding: 80px 32px 40px; }
  .footer-inner { max-width: var(--maxw); margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(253, 250, 243, 0.15);
  }
  @media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }

  .footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
  .footer-logo-img { width: 56px; height: 56px; object-fit: contain; }
  .footer-logo-text {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: 40px;
    letter-spacing: -0.04em;
    color: var(--paper);
    line-height: 1;
  }
  .footer-tag {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: rgba(253, 250, 243, 0.7);
    font-weight: 300;
    max-width: 320px;
  }

  .footer-col h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 250, 243, 0.5);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; font-size: 14px; }
  .footer-col a { color: rgba(253, 250, 243, 0.85); transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold); }

  .footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-family: var(--mono);
    font-size: 12px;
    color: rgba(253, 250, 243, 0.45);
    letter-spacing: 0.05em;
  }

  /* ============ ANIMATIONS ============ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 94, 26, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(255, 94, 26, 0.05); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
