:root {
    --bg: #fafafa;
    --paper: #ffffff;
    --ink: #0b0b0b;
    --muted: #777773;
    --line: rgba(11, 11, 11, 0.11);
    --soft: #ededeb;
    --amber: #d98324;
    --green: #72d68b;
    --radius: 18px;
    --shadow: 0 20px 60px rgba(0,0,0,.10);
    --ease: cubic-bezier(.16, 1, .3, 1);
    --max: 1188px;
    --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: auto; }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Switzer", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -.012em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; text-decoration: none; }
  button { font: inherit; }
  img { display: block; max-width: 100%; }

  .page-shell { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

  .section { padding: 132px 0; border-top: 1px solid var(--line); }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--line); border-radius: 999px;
    background: rgba(255,255,255,.72);
    padding: 7px 11px; font-size: 12px; font-weight: 650;
    backdrop-filter: blur(12px);
  }

  .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(114,214,139,.14); }

  .display, .section-title, .thesis blockquote, .footer-heading {
    font-family: "Switzer", Arial, Helvetica, sans-serif;
    font-weight: 500; letter-spacing: -.047em; margin: 0;
  }

  .display { font-size: clamp(58px, 5.35vw, 82px); line-height: .96; }
  .display .ghost { color: #9b9b96; }
  .section-title { font-size: clamp(44px, 4.4vw, 68px); line-height: .98; }
  .section-title .ghost { color: #9a9a95; }
  .body-lg { font-size: clamp(18px, 1.8vw, 24px); letter-spacing: -.025em; line-height: 1.35; }
  .muted { color: var(--muted); }
  .mono { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; }

  .pill-button {
    display: inline-flex; align-items: center; gap: 11px;
    border-radius: 999px; padding: 11px 18px;
    background: #0b0b0b; color: #fff; font-weight: 650; font-size: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.22);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    position: relative; overflow: hidden;
  }
  .pill-button::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.25) 45%, transparent 65%);
    transform: translateX(-120%); transition: transform .7s var(--ease);
  }
  .pill-button:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,0,0,.28); }
  .pill-button:hover::after { transform: translateX(120%); }
  .pill-button .tick { width: 8px; height: 8px; border-radius: 2px; background: var(--amber); }

  a:focus-visible, button:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 6px; }

  /* NAV */
  .nav-wrap { position: fixed; z-index: 50; top: 20px; left: 0; right: 0; pointer-events: none; }
  .nav {
    width: max-content; max-width: calc(100% - 24px); margin-inline: auto;
    display: flex; align-items: center; gap: 28px;
    border: 1px solid rgba(0,0,0,.09); border-radius: 999px;
    padding: 7px 9px 7px 8px;
    background: rgba(255,255,255,.83);
    box-shadow: 0 8px 30px rgba(0,0,0,.07);
    backdrop-filter: blur(18px) saturate(140%);
    pointer-events: auto;
    transform: translateY(-30px); opacity: 0;
    animation: navIn .9s .2s var(--ease) forwards;
  }
  @keyframes navIn { to { transform: none; opacity: 1; } }

  .brand { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 13px; padding-left: 2px; }
  .brand-mark {
    width: 30px; height: 30px; border-radius: 50%; background: #111;
    display: grid; place-items: center; position: relative;
  }
  .brand-mark::after {
    content: ""; width: 0; height: 0;
    border-left: 8px solid var(--amber);
    border-top: 5px solid transparent; border-bottom: 5px solid transparent;
    margin-left: 2px;
  }
  .nav-links { display: flex; align-items: center; gap: 24px; font-size: 13px; font-weight: 600; }
  .nav-links a { opacity: .72; transition: opacity .25s ease; }
  .nav-links a:hover { opacity: 1; }
  .nav-cta { border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; background: #fff; box-shadow: 0 3px 10px rgba(0,0,0,.06); font-size: 13px; font-weight: 600; }

  /* MORPH SCENE */
  .morph-scene { position: relative; height: 255vh; min-height: 1900px; background: #fafafa; }
  .morph-sticky { position: sticky; top: 0; height: 100vh; min-height: 0; overflow: hidden; isolation: isolate; background: #fafafa; }
  .morph-shell {
    position: relative; width: min(var(--max), calc(100% - 40px)); height: 100%;
    margin-inline: auto; border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  }
  .morph-shell::before {
    content: ""; position: absolute; z-index: -1; left: 50%; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,.055) 20%, rgba(0,0,0,.055) 78%, transparent);
    opacity: .45;
  }

  .morph-hero-copy {
    position: absolute; z-index: 10; left: 54px; top: clamp(150px, 18vh, 210px);
    width: min(560px, 48%); will-change: transform, opacity, filter;
  }
  .morph-hero-copy .eyebrow { opacity: 0; transform: translateY(18px); animation: heroLineIn .9s .18s var(--ease) forwards; }
  .morph-hero-copy h1 {
    margin: 28px 0 0; opacity: 0; transform: translateY(34px);
    clip-path: inset(0 0 100% 0); animation: heroHeadlineIn 1.15s .28s var(--ease) forwards;
  }
  .morph-hero-copy p {
    margin: 27px 0 30px; max-width: 520px; font-size: 20px; line-height: 1.38; letter-spacing: -.028em;
    opacity: 0; transform: translateY(26px); animation: heroLineIn .95s .48s var(--ease) forwards;
  }
  .morph-hero-copy .hero-actions { opacity: 0; transform: translateY(22px); animation: heroLineIn .95s .62s var(--ease) forwards; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
  .hero-secondary { font-size: 13px; font-weight: 600; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
  .hero-secondary span { transition: transform .35s var(--ease); display: inline-block; }
  .hero-secondary:hover span { transform: translate(3px,-3px); }
  @keyframes heroHeadlineIn { to { opacity: 1; transform: translateY(0); clip-path: inset(0 0 0 0); } }
  @keyframes heroLineIn { to { opacity: 1; transform: translateY(0); } }

  .morph-clients {
    position: absolute; z-index: 8; left: 0; right: 0; bottom: 0; height: 116px;
    border-top: 1px solid var(--line);
    display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 70px; padding: 0 54px;
    will-change: transform, opacity, filter;
  }
  .stack-block { display: flex; align-items: center; gap: 14px; }
  .chip-stack { display: flex; }
  .chip-stack i {
    width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg);
    margin-left: -8px; display: grid; place-items: center;
    font-style: normal; font-family: var(--mono); font-size: 10px; color: #fff;
  }
  .chip-stack i:first-child { margin-left: 0; }
  .chip-stack i:nth-child(1) { background: #17181c; }
  .chip-stack i:nth-child(2) { background: #2f3238; }
  .chip-stack i:nth-child(3) { background: #d98324; color: #1a1206; }
  .chip-stack i:nth-child(4) { background: #4a4e56; }
  .stack-label { font-size: 12px; font-weight: 650; margin-top: 2px; }
  .stack-sub { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
  .logo-row { display: flex; justify-content: space-between; gap: 30px; color: #8b8b87; font-weight: 700; font-size: 17px; opacity: .75; overflow: hidden; white-space: nowrap; }

  .morph-projects-title {
    position: absolute; z-index: 4; left: 54px; top: 73vh; margin: 0;
    font-size: clamp(56px, 5.1vw, 80px); line-height: .95; letter-spacing: -.05em; font-weight: 500;
    opacity: 0; filter: blur(18px); will-change: transform, opacity, filter; pointer-events: none;
  }

  .morph-cards { position: absolute; inset: 0; z-index: 6; pointer-events: none; }
  .morph-card { position: absolute; left: 0; top: 0; margin: 0; will-change: transform, width, opacity, filter; transform-origin: center center; pointer-events: auto; }
  .morph-card__image {
    position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden;
    border-radius: 17px; background: #111; box-shadow: 0 28px 64px rgba(0,0,0,.22); transform: translateZ(0);
  }
  .morph-card__image img { width: 100%; height: 100%; object-fit: cover; }
  .morph-card__image::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); pointer-events: none;
  }
  .morph-card__caption {
    display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: start; padding-top: 15px;
    opacity: 0; transform: translateY(18px); will-change: opacity, transform;
  }
  .morph-card__caption h3 { margin: 0 0 3px; font-size: 20px; line-height: 1.2; letter-spacing: -.035em; font-weight: 600; }
  .morph-card__caption p { margin: 0; font-size: 13px; color: #666; }
  .morph-card__caption a { margin: 0; font-size: 13px; color: #444; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
  .morph-card__caption a span { display: inline-block; transition: transform .35s var(--ease); }
  .morph-card:hover .morph-card__caption a span { transform: translate(3px,-3px); }

  .morph-progress {
    position: absolute; z-index: 20; right: 18px; top: 50%; width: 5px; height: 96px;
    border-radius: 99px; background: rgba(0,0,0,.07); transform: translateY(-50%); overflow: hidden; opacity: .45;
  }
  .morph-progress span { display: block; width: 100%; height: 100%; border-radius: inherit; background: #111; transform-origin: top; transform: scaleY(0); }

  /* RECIPE CARD VISUALS: pure CSS, no assets */
  .recipe { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; isolation: isolate; }
  .recipe::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
  }
  .recipe__tag {
    position: absolute; z-index: 5; left: 6%; top: 7%;
    font-family: var(--mono); font-size: clamp(8px, .95vw, 11px); letter-spacing: .14em;
    text-transform: uppercase; color: rgba(255,255,255,.55);
  }
  .recipe__out {
    position: absolute; z-index: 5; left: 6%; bottom: 9%;
    font-size: clamp(19px, 2.35vw, 36px); font-weight: 620; letter-spacing: -.055em; line-height: .98; color: #fff;
  }
  .recipe__out em { font-style: normal; color: var(--amber); }
  .recipe__meta {
    position: absolute; z-index: 5; left: 6%; bottom: 4.5%;
    font-family: var(--mono); font-size: 9px; letter-spacing: .1em; color: rgba(255,255,255,.42); text-transform: uppercase;
  }

  /* card 1: property listing */
  .recipe--listing { background: radial-gradient(circle at 72% 26%, rgba(48,110,165,.5), transparent 40%), linear-gradient(145deg, #0f2b3d 0%, #071018 64%, #020609 100%); }
  .frame {
    position: absolute; z-index: 3; right: -6%; top: 12%; width: 58%;
    border-radius: 12px; overflow: hidden; background: #f6f4f0;
    box-shadow: 0 26px 55px rgba(0,0,0,.45); transform: rotate(-2deg);
  }
  .frame__bar { height: 15px; display: flex; align-items: center; gap: 4px; padding: 0 9px; background: rgba(255,255,255,.9); border-bottom: 1px solid rgba(0,0,0,.08); font-family: var(--mono); font-size: 6px; color: #7b8089; }
  .frame__bar i { width: 4px; height: 4px; border-radius: 50%; background: #cdc8c0; }
  .frame__bar b { margin-left: 5px; font-weight: 400; }
  .frame__body { padding: 9% 8% 11%; background: linear-gradient(150deg, #f6f4f0, #e6e2da); }
  .frame__kicker { font-family: var(--mono); font-size: 6px; letter-spacing: .14em; color: #b0722a; text-transform: uppercase; }
  .frame__h { margin-top: 6%; font-size: clamp(13px, 1.55vw, 23px); line-height: .95; letter-spacing: -.05em; font-weight: 650; color: #101820; }
  .frame__rows { margin-top: 8%; display: grid; gap: 4px; }
  .frame__rows span { height: 5px; border-radius: 3px; background: rgba(16,24,32,.13); }
  .frame__rows span:nth-child(2) { width: 78%; }
  .frame__rows span:nth-child(3) { width: 55%; }

  /* card 2: product page to ad */
  .recipe--ad { background: linear-gradient(150deg, #2b1536 0%, #170c1e 68%, #0a050e 100%); }
  .reel { position: absolute; z-index: 3; right: 7%; top: 9%; width: 33%; aspect-ratio: 9/16; border-radius: 12px; overflow: hidden; background: #120a18; box-shadow: 0 24px 52px rgba(0,0,0,.5); transform: rotate(2deg); }
  .reel__sky { position: absolute; inset: 0; background: linear-gradient(180deg, #d98324 0%, #7d3f2c 46%, #241033 100%); opacity: .85; }
  .reel__cap { position: absolute; left: 8%; right: 8%; bottom: 14%; font-size: 8px; font-weight: 700; line-height: 1.15; color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,.5); }
  .reel__cap b { background: var(--amber); color: #1a1206; padding: 1px 3px; border-radius: 2px; }
  .reel__bar { position: absolute; left: 8%; right: 8%; bottom: 8%; height: 2px; border-radius: 2px; background: rgba(255,255,255,.25); }
  .reel__bar i { display: block; width: 62%; height: 100%; border-radius: inherit; background: #fff; }
  .reel--b { right: 30%; top: 17%; width: 30%; transform: rotate(-5deg); z-index: 2; opacity: .55; }
  .reel--b .reel__sky { background: linear-gradient(180deg, #4e7fa8, #241033); }

  /* card 3: article to explainer */
  .recipe--explainer { background: linear-gradient(160deg, #12140f 0%, #1c2016 55%, #080a06 100%); }
  .wave { position: absolute; z-index: 3; left: 6%; right: 6%; top: 34%; display: flex; align-items: center; gap: 3px; height: 22%; }
  .wave i { flex: 1; border-radius: 2px; background: rgba(255,255,255,.28); }
  .wave i.hot { background: var(--amber); }
  .strip { position: absolute; z-index: 3; left: 6%; right: 6%; top: 60%; display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; }
  .strip b { display: block; aspect-ratio: 16/10; border-radius: 4px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); }
  .strip b:nth-child(2) { background: rgba(217,131,36,.32); }
  .caption-chip {
    position: absolute; z-index: 4; left: 6%; top: 20%;
    padding: 4px 7px; border-radius: 5px; background: rgba(255,255,255,.92); color: #14160f;
    font-size: 8px; font-weight: 650; box-shadow: 0 10px 26px rgba(0,0,0,.4);
  }

  /* card 4: data to batch */
  .recipe--batch { background: linear-gradient(120deg, #0b1220 0%, #101a2c 52%, #05080f 100%); }
  .queue { position: absolute; z-index: 3; left: 6%; right: 6%; top: 26%; display: grid; gap: 6px; }
  .queue div {
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px;
    padding: 6px 8px; border-radius: 6px; background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09); font-family: var(--mono); font-size: 7px; color: rgba(255,255,255,.62);
  }
  .queue div u { text-decoration: none; color: rgba(255,255,255,.3); }
  .queue div s { text-decoration: none; height: 3px; border-radius: 3px; background: rgba(255,255,255,.12); display: block; }
  .queue div s i { display: block; height: 100%; border-radius: inherit; background: var(--amber); }
  .queue div.done s i { width: 100%; background: var(--green); }
  .queue div:nth-child(1) s i { width: 100%; }
  .queue div:nth-child(2) s i { width: 74%; }
  .queue div:nth-child(3) s i { width: 41%; }
  .queue div:nth-child(4) s i { width: 12%; }

  /* THESIS */
  .thesis-section { position: relative; background: #fafafa; border-top: 1px solid var(--line); padding: 150px 0; }
  .thesis { max-width: 860px; margin: 0 auto; text-align: center; }
  .thesis blockquote { margin: 0; font-size: clamp(30px, 4vw, 53px); line-height: 1.08; letter-spacing: -.05em; font-weight: 500; }
  .thesis blockquote em { font-style: normal; color: var(--amber); }
  .thesis .mono { display: block; margin-top: 30px; color: var(--muted); text-transform: uppercase; }

  /* HOW IT WORKS */
  .split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 120px; align-items: start; }
  .chip-row { display: flex; gap: 8px; margin-top: 13px; flex-wrap: wrap; }
  .chip {
    height: 37px; padding: 0 12px; border-radius: 9px; background: #fff; border: 1px solid var(--line);
    display: grid; place-items: center; font-family: var(--mono); font-size: 10px; box-shadow: 0 5px 15px rgba(0,0,0,.04);
  }
  .stage-list { border-top: 1px solid var(--line); }
  .stage {
    display: grid; grid-template-columns: 28px 1fr; gap: 15px; align-items: start;
    padding: 20px 0; border-bottom: 1px solid var(--line);
  }
  .stage-num {
    width: 28px; height: 28px; border-radius: 50%; background: #0d0d0d; color: #fff;
    display: grid; place-items: center; font-family: var(--mono); font-size: 10px;
    transition: background .35s var(--ease);
  }
  .stage:hover .stage-num { background: var(--amber); color: #1a1206; }
  .stage h3 { margin: 3px 0 0; font-size: clamp(18px, 2vw, 25px); letter-spacing: -.035em; font-weight: 500; }
  .stage p { margin: 7px 0 0; font-size: 14px; line-height: 1.5; color: var(--muted); max-width: 52ch; }

  /* SPEC */
  .spec-grid { display: grid; grid-template-columns: .9fr 1.15fr; gap: 94px; align-items: start; }
  .spec-panel { background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 8px 15px; margin-top: 40px; }
  .spec-title { color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; margin: 12px 0; }
  .spec-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 12px; }
  .spec-row b { font-weight: 600; }
  .spec-row span { color: var(--muted); font-family: var(--mono); font-size: 11px; }
  .spec-copy { padding-top: 122px; }
  .spec-copy p { font-size: 18px; line-height: 1.48; letter-spacing: -.02em; }
  .spec-copy p:first-child { margin-top: 0; }

  /* PRICING */
  .pricing-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
  .pricing-board { margin-top: 42px; border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,.06); }
  .pricing-top { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 360px; }
  .hire-card { background: #0c0c0d; color: #fff; padding: 28px; position: relative; overflow: hidden; }
  .hire-card::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 40%; right: -80px; bottom: -100px; background: linear-gradient(135deg,#232323,#000); transform: rotate(22deg); }
  .hire-card .eyebrow { color: #111; background: #fff; position: relative; z-index: 2; }
  .hire-card h3 { margin: 92px 0 8px; font-size: 30px; letter-spacing: -.05em; position: relative; z-index: 2; font-weight: 500; }
  .hire-card p { position: relative; z-index: 2; color: #c4c4c4; max-width: 250px; font-size: 13px; line-height: 1.5; }
  .plan-card { padding: 30px; }
  .plan-card h3 { font-size: 27px; margin: 0; letter-spacing: -.04em; font-weight: 500; }
  .plan-card > p { font-size: 14px; margin: 8px 0 0; }
  .price { font-size: 54px; letter-spacing: -.06em; margin: 25px 0 18px; font-weight: 500; }
  .price span { font-size: 15px; letter-spacing: 0; color: var(--muted); }
  .features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; font-size: 12px; }
  .feature::before { content: "✓"; display: inline-grid; place-items: center; width: 17px; height: 17px; background: #111; color: #fff; border-radius: 50%; margin-right: 8px; font-size: 10px; }
  .price-cta { margin-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .price-cta .pill-button { box-shadow: none; }
  .single-project { background: #0b0b0b; color: #fff; padding: 25px 28px; display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 28px; align-items: center; }
  .single-project h4 { margin: 0 0 4px; font-size: 22px; font-weight: 500; letter-spacing: -.04em; }
  .single-project p { margin: 0; color: #aaa; font-size: 12px; }
  .single-points { display: flex; gap: 24px; color: #ccc; font-family: var(--mono); font-size: 11px; }
  .white-btn { background: #fff; color: #111; border-radius: 999px; padding: 10px 15px; font-weight: 700; font-size: 12px; }

  /* USE CASES */
  .cases-head { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; margin-bottom: 40px; }
  .cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
  .case-card {
    background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; min-height: 210px;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  }
  .case-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(0,0,0,.07); }
  .case-card h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -.04em; font-weight: 600; }
  .case-card p { margin: 0; font-size: 14px; line-height: 1.45; color: var(--muted); }
  .case-io { margin-top: 22px; font-family: var(--mono); font-size: 10px; letter-spacing: .06em; color: #111; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
  .case-io u { text-decoration: none; color: var(--muted); }
  .case-io b { color: var(--amber); }

  /* FAQ */
  .faq-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 38px; align-items: start; }
  .faq-list { margin-top: 45px; border-top: 1px solid var(--line); }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-question { width: 100%; border: 0; background: none; padding: 18px 0; display: grid; grid-template-columns: 38px 1fr auto; gap: 10px; text-align: left; cursor: pointer; font-size: 14px; align-items: center; color: inherit; }
  .faq-num { color: var(--muted); font-family: var(--mono); font-size: 10px; }
  .faq-toggle { width: 25px; height: 25px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .35s var(--ease); }
  .faq-answer { max-height: 0; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.55; padding-left: 48px; transition: max-height .55s var(--ease), padding-bottom .55s var(--ease); }
  .faq-item.open .faq-answer { max-height: 320px; padding-bottom: 18px; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .call-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; position: sticky; top: 110px; box-shadow: 0 14px 40px rgba(0,0,0,.06); }
  .call-card h3 { font-size: 25px; letter-spacing: -.04em; margin: 0 0 8px; font-weight: 500; }
  .call-card p { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 0 0 20px; }

  /* NOTES / JOURNAL */
  .notes-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 36px; gap: 24px; }
  .notes-list { border-top: 1px solid var(--line); }
  .note-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 28px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); transition: padding-left .35s var(--ease); }
  .note-row:hover { padding-left: 12px; }
  .note-thumb { aspect-ratio: 1.6; border-radius: 8px; background: linear-gradient(135deg,#111,#3d4048); overflow: hidden; position: relative; }
  .note-thumb::after { content: ""; position: absolute; inset: 20%; border: 1px solid rgba(255,255,255,.45); transform: rotate(-5deg); }
  .note-row h3 { margin: 0; font-size: 22px; letter-spacing: -.04em; font-weight: 500; }
  .note-row p { margin: 4px 0 0; font-family: var(--mono); font-size: 10px; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
  .note-arrow { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .35s var(--ease); }
  .note-row:hover .note-arrow { transform: rotate(45deg); }

  /* FOOTER */
  .footer { background: #050505; color: #fff; padding: 90px 0 30px; overflow: hidden; }
  .footer-kicker { color: #aaa; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
  .footer-heading { margin: 20px 0 70px; font-size: clamp(52px,8vw,130px); line-height: .85; letter-spacing: -.075em; font-weight: 500; }
  .footer-heading .ghost { color: #5e5e5e; }
  .word-cycle { display: inline-block; position: relative; min-width: 4.6em; height: .9em; vertical-align: bottom; overflow: hidden; }
  .word-cycle span { position: absolute; left: 0; top: 0; opacity: 0; transform: translateY(100%); animation: cycle 9s infinite; }
  .word-cycle span:nth-child(2) { animation-delay: 3s; }
  .word-cycle span:nth-child(3) { animation-delay: 6s; }
  @keyframes cycle { 0%{opacity:0;transform:translateY(100%)} 8%,26%{opacity:1;transform:translateY(0)} 34%,100%{opacity:0;transform:translateY(-100%)} }
  .footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3,.6fr); gap: 40px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 28px; }
  .footer-col h4 { color: #777; font-family: var(--mono); font-size: 10px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 12px; }
  .footer-col a, .footer-col div { display: block; font-size: 12px; margin: 8px 0; color: #e7e7e7; }
  .footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: #777; font-family: var(--mono); font-size: 10px; }
  .giant-name { font-size: clamp(95px,22vw,360px); letter-spacing: -.095em; line-height: .72; white-space: nowrap; margin-top: 80px; color: #fff; transform: translateX(-1vw); font-weight: 500; }
  .giant-name em { font-style: normal; color: var(--amber); }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(62px) scale(.985); filter: blur(14px); transition: opacity .95s var(--ease), transform 1.1s var(--ease), filter .95s var(--ease); }
  .reveal.visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  .delay-1 { transition-delay: .08s; }
  .delay-2 { transition-delay: .16s; }

  @media (max-width: 900px) {
    .section { padding: 95px 0; }
    .nav-links { display: none; }
    .morph-scene { height: auto; min-height: 0; }
    .morph-sticky { position: relative; height: auto; min-height: 0; overflow: visible; }
    .morph-shell { height: auto; padding: 145px 20px 90px; border: 0; width: 100%; }
    .morph-shell::before, .morph-progress { display: none; }
    .morph-hero-copy { position: relative; left: auto; top: auto; width: 100%; max-width: 650px; }
    .morph-hero-copy p { font-size: 18px; }
    .morph-clients { position: relative; left: auto; right: auto; bottom: auto; height: auto; margin-top: 70px; padding: 28px 0; display: block; }
    .morph-clients .logo-row { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; white-space: normal; }
    .morph-projects-title { position: relative; left: auto; top: auto; opacity: 1 !important; filter: none !important; transform: none !important; margin: 80px 0 30px; }
    .morph-cards { position: relative; inset: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 16px; }
    .morph-card { position: relative; width: 100% !important; transform: none !important; opacity: 1 !important; filter: none !important; }
    .morph-card__caption { visibility: visible !important; opacity: 1 !important; transform: none !important; }
    .morph-card__image { border-radius: 13px; box-shadow: 0 15px 35px rgba(0,0,0,.12); }
    .split-grid, .spec-grid, .faq-grid, .pricing-intro { grid-template-columns: 1fr; gap: 58px; }
    .spec-copy { padding-top: 0; }
    .pricing-top { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr 1fr; }
    .single-project { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 620px) {
    .page-shell { width: min(100% - 24px, var(--max)); }
    .section { padding: 78px 0; }
    .morph-shell { padding-inline: 18px; }
    .morph-hero-copy h1 { font-size: 50px; }
    .morph-cards { grid-template-columns: 1fr; gap: 36px; }
    .morph-clients .logo-row { grid-template-columns: 1fr 1fr; font-size: 15px; }
    .morph-projects-title { font-size: 46px; }
    .morph-card__caption h3 { font-size: 18px; }
    .cases-grid, .cases-head, .features { grid-template-columns: 1fr; }
    .note-row { grid-template-columns: 82px 1fr auto; gap: 14px; }
    .note-row h3 { font-size: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .giant-name { margin-top: 55px; }
    .spec-row { grid-template-columns: 1fr; gap: 4px; }
  }

  @media (min-width: 901px) and (max-height: 650px), (min-width: 901px) and (prefers-reduced-motion: reduce) {
    .morph-scene { height: auto; min-height: 0; }
    .morph-sticky { position: relative; height: auto; min-height: 0; overflow: visible; }
    .morph-shell { height: auto; padding: 145px 20px 90px; border: 0; width: 100%; }
    .morph-shell::before, .morph-progress { display: none; }
    .morph-hero-copy { position: relative; left: auto; top: auto; width: 100%; max-width: 650px; }
    .morph-hero-copy p { font-size: 18px; }
    .morph-clients { position: relative; left: auto; right: auto; bottom: auto; height: auto; margin-top: 70px; padding: 28px 0; display: block; }
    .morph-clients .logo-row { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; white-space: normal; }
    .morph-projects-title { position: relative; left: auto; top: auto; opacity: 1 !important; filter: none !important; transform: none !important; margin: 80px 0 30px; }
    .morph-cards { position: relative; inset: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 16px; }
    .morph-card { position: relative; width: 100% !important; transform: none !important; opacity: 1 !important; filter: none !important; }
    .morph-card__caption { visibility: visible !important; opacity: 1 !important; transform: none !important; }
    .morph-card__image { border-radius: 13px; box-shadow: 0 15px 35px rgba(0,0,0,.12); }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; filter: none; }
    .morph-scene { height: auto; min-height: 0; }
    .morph-sticky { position: relative; height: auto; overflow: visible; }
  }

.notes-silo-intro { margin: 0 0 30px; font-size: 17px; color: #666; }
.notes-silo-intro a { color: #111; text-decoration: underline; text-underline-offset: 4px; }
