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

  :root {
    --bg: #fbfbfa;
    --bg-elev: #f3f3f1;
    --bg-card: #ffffff;
    --line: #e4e4e0;
    --line-strong: #c9c9c2;
    --ink: #0b0b0a;
    --ink-dim: #46463e;
    --ink-faint: #8a8a82;
    --accent: #2c55e6;
    --accent-hover: #1e42c8;
    --sans: 'Onest', system-ui, sans-serif;
    --serif: 'PT Serif', Georgia, serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
  }

  /* Shared container */
  .wrap { max-width: 1360px; margin: 0 auto; padding: 0 40px; }

  /* ============ NAV ============ */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 40px;
    display: flex; align-items: center; justify-content: space-between;
    background: color-mix(in oklab, var(--bg) 85%, transparent);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, padding 0.3s ease;
  }
  nav.scrolled { border-bottom-color: var(--line); padding: 12px 40px; }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--sans); font-weight: 600;
    font-size: 17px; letter-spacing: -0.015em;
  }
  .logo-mark {
    width: 26px; height: 26px;
    display: block;
  }
  .nav-links {
    display: flex; gap: 36px;
    position: absolute; left: 50%; transform: translateX(-50%);
  }
  .nav-links a {
    color: var(--ink-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .nav-links a:hover::after { transform: scaleX(1); }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    font-size: 14px; font-weight: 500;
    cursor: pointer; text-decoration: none;
    transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
    font-family: inherit;
  }
  .btn-primary {
    background: var(--ink);
    color: var(--bg);
  }
  .btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
  .btn-ghost {
    color: var(--ink);
    border-color: var(--line-strong);
    background: transparent;
  }
  .btn-ghost:hover { background: var(--bg-elev); }
  .btn svg { width: 14px; height: 14px; }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 40px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
  }

  /* ==== Particle field background ==== */
  .hero-canvas {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    width: 100%;
    height: 100%;
  }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-dim);
    letter-spacing: 0.02em;
    padding: 7px 14px 7px 10px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 999px;
    margin-bottom: 32px;
    width: fit-content;
    box-shadow: 0 1px 0 rgba(11,11,10,0.03);
  }
  .eyebrow .ping {
    position: relative;
    width: 8px; height: 8px; border-radius: 50%;
    background: #20a66a;
    box-shadow: 0 0 0 0 rgba(32,166,106,0.6);
    animation: ping 2.2s ease-out infinite;
  }
  @keyframes ping {
    0% { box-shadow: 0 0 0 0 rgba(32,166,106,0.5); }
    70% { box-shadow: 0 0 0 10px rgba(32,166,106,0); }
    100% { box-shadow: 0 0 0 0 rgba(32,166,106,0); }
  }

  h1.hero-title {
    font-family: var(--sans);
    font-size: clamp(44px, 7.5vw, 104px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 0.98;
    max-width: 1100px;
    color: var(--ink);
  }
  h1.hero-title .serif-it {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
  }

  .type-wrap {
    position: relative;
    display: inline-block;
    vertical-align: baseline;
    white-space: nowrap;
  }
  .type-phantom {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    visibility: hidden;
    white-space: nowrap;
    pointer-events: none;
  }
  .type-text {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
    white-space: nowrap;
  }
  .type-caret {
    position: absolute;
    top: 0;
    display: inline-block;
    width: 3px;
    height: 0.82em;
    background: var(--accent);
    transform: translate(4px, 12%);
    animation: blink 1s step-end infinite;
    pointer-events: none;
  }
  @keyframes blink { 50% { opacity: 0; } }

  .hero-sub {
    margin-top: 36px;
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.55;
    color: var(--ink-dim);
    max-width: 560px;
  }
  .hero-ctas {
    margin-top: 44px;
    display: flex; gap: 12px; flex-wrap: wrap;
  }

  /* Hero bottom bar */
  .hero-bar {
    position: absolute;
    left: 40px; right: 40px; bottom: 36px;
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-faint);
    letter-spacing: 0.05em;
  }
  .hero-bar .scroll-hint {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--ink-dim);
  }
  .hero-bar .scroll-hint .arrow {
    display: inline-block;
    width: 14px; height: 14px;
    animation: arrowDown 1.8s ease-in-out infinite;
  }
  @keyframes arrowDown {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(4px); opacity: 1; }
  }

  /* ============ CLIENTS ============ */
  .clients {
    padding: 60px 0 80px;
    border-top: 1px solid var(--line);
    background: var(--bg);
    overflow: hidden;
  }
  .clients-head {
    text-align: center;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-faint);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 40px;
  }

  .marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  }
  .marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 44s linear infinite;
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  .marquee-row {
    display: flex;
    flex-shrink: 0;
  }
  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  .client {
    width: clamp(180px, 18vw, 240px);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    border-right: 1px solid var(--line);
    transition: background 0.3s ease;
  }
  .client:hover { background: var(--bg-elev); }
  .client.placeholder {
    background-image:
      repeating-linear-gradient(135deg, transparent 0 10px, rgba(11,11,10,0.025) 10px 11px);
  }
  .client-logo {
    font-family: var(--serif);
    font-style: italic;
    font-size: 30px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .client.placeholder .client-logo {
    font-family: var(--mono);
    font-style: normal;
    font-size: 10px;
    color: var(--ink-faint);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .client-corner {
    position: absolute;
    top: 10px; left: 12px;
    font-family: var(--mono);
    font-size: 9px;
    color: var(--ink-faint);
    letter-spacing: 0.1em;
  }

  @media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
  }

  /* ============ SECTION SHARED ============ */
  section.block {
    padding: 140px 40px;
    position: relative;
  }
  .section-label {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-faint);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--ink-faint);
  }
  .section-title {
    font-family: var(--sans);
    font-size: clamp(38px, 5.5vw, 76px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.02;
    max-width: 1000px;
  }
  .section-title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
  }

  /* ============ CAROUSEL ============ */
  .showcase {
    position: relative;
  }
  .showcase-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 48px;
    margin-bottom: 56px;
    max-width: 1280px;
    margin-left: auto; margin-right: auto;
  }
  .showcase-head p {
    font-size: 16px;
    color: var(--ink-dim);
    max-width: 420px;
    line-height: 1.55;
  }

  .carousel {
    position: relative;
  }
  .carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: calc((100vw - 1280px) / 2 + 40px);
    padding: 10px calc((100vw - 1280px) / 2 + 40px) 40px;
    scrollbar-width: none;
  }
  .carousel-track::-webkit-scrollbar { display: none; }
  @media (max-width: 1360px) {
    .carousel-track {
      scroll-padding-left: 40px;
      padding: 10px 40px 40px;
    }
  }

  .card {
    flex: 0 0 min(760px, 78vw);
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s ease;
  }
  .card:hover {
    border-color: var(--line-strong);
    box-shadow: 0 30px 60px -30px rgba(11,11,10,0.12), 0 10px 30px -20px rgba(11,11,10,0.08);
  }

  .card-visual {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
  }

  /* shot = photo dropzone */
  .shot {
    position: absolute;
    background: #fff;
    border: 1px dashed rgba(11,11,10,0.22);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ink-faint);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    padding: 14px;
    background-image:
      repeating-linear-gradient(135deg, transparent 0 11px, rgba(11,11,10,0.025) 11px 12px);
  }
  .shot-title {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 4px;
    font-weight: 400;
  }
  .shot-tag {
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 0.18em;
    color: var(--ink-faint);
  }
  .shot-dim {
    position: absolute;
    bottom: 10px; right: 12px;
    font-size: 9px;
    color: var(--ink-faint);
    letter-spacing: 0.05em;
  }
  .shot-corner {
    position: absolute;
    top: 10px; left: 12px;
    font-size: 9px;
    color: var(--ink-faint);
    letter-spacing: 0.1em;
  }

  /* JU layout */
  .visual-ju {
    padding: 40px 32px 0 32px;
    background: linear-gradient(140deg, #e8efff 0%, #dde7fb 100%);
    display: flex;
    align-items: flex-end;
    gap: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  /* override shared .shot absolute positioning so flex layout works */
  .visual-ju .shot {
    position: relative;
  }
  .visual-ju .shot-desktop {
    flex: 1 1 auto;
    min-width: 0;
    aspect-ratio: 16/10;
    margin-bottom: 36px;
    padding-top: 30px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 24px 50px -28px rgba(11,11,10,0.28), 0 6px 18px -12px rgba(11,11,10,0.18);
  }
  .visual-ju .shot-desktop::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 22px;
    background: #f6f6f3;
    border-bottom: 1px solid rgba(11,11,10,0.08);
    border-radius: 10px 10px 0 0;
  }
  .visual-ju .shot-desktop::after {
    content: '';
    position: absolute;
    top: 8px; left: 12px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ff5f56;
    box-shadow: 10px 0 0 #ffbd2e, 20px 0 0 #27c93f;
  }
  .visual-ju .shot-phone {
    flex: 0 0 28%;
    aspect-ratio: 9/18;
    border-radius: 22px 22px 0 0;
    margin-bottom: -2px;
    padding-top: 28px;
    background: #fff;
    box-shadow: 0 24px 40px -18px rgba(11,11,10,0.32), 0 6px 18px -10px rgba(11,11,10,0.22);
  }
  .visual-ju .shot-phone::before {
    content: '';
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 42%;
    height: 10px;
    background: #0b0b0a;
    border-radius: 0 0 10px 10px;
  }
  .visual-ju .shot-phone .shot-corner { top: 30px; }
  .visual-ju .shot-phone .shot-title { margin-top: 18px; font-size: 14px; text-align: center; padding: 0 8px; }

  /* Gpex layout */
  .visual-gpex {
    padding: 32px;
    background: linear-gradient(140deg, #fef0e8 0%, #fbe2d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 100%;
  }
  .visual-gpex .shot-phone {
    position: relative;
    width: 32%;
    aspect-ratio: 9/19;
    border-radius: 22px;
    margin-bottom: 0;
  }
  .visual-gpex .shot-phone.shift-back {
    transform: translateY(22px) rotate(-4deg);
    opacity: 0.9;
  }
  .visual-gpex .shot-phone.shift-front {
    transform: rotate(3deg);
    z-index: 2;
  }

  /* Soon layout */
  .visual-soon {
    padding: 28px;
    background:
      repeating-linear-gradient(-45deg, transparent 0 14px, rgba(11,11,10,0.03) 14px 15px),
      linear-gradient(140deg, #f3f0e8 0%, #e5e1d5 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .soon-mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: 80px;
    color: var(--ink);
    opacity: 0.85;
    letter-spacing: -0.03em;
  }

  /* Add new placeholder */
  .visual-add {
    padding: 28px;
    background: var(--bg-elev);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .add-mark {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: var(--ink-faint);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .add-mark .circle {
    width: 52px; height: 52px;
    border: 1.5px dashed var(--line-strong);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 28px;
    font-family: var(--sans);
    color: var(--ink-faint);
    font-weight: 300;
  }

  .card-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
  }
  .card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-faint);
    letter-spacing: 0.04em;
  }
  .card-status {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .card-status.live {
    background: #e4f7ed;
    color: #117a43;
  }
  .card-status.wip {
    background: #fff0da;
    color: #8a5200;
  }
  .card-status.soon {
    background: var(--bg-elev);
    color: var(--ink-dim);
  }
  .card h3 {
    font-family: var(--sans);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  .card h3 em {
    font-family: var(--serif);
    font-style: italic;
  }
  .card-desc {
    font-size: 15px;
    color: var(--ink-dim);
    line-height: 1.55;
  }
  .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
  }
  .card-tag {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--ink-dim);
    padding: 4px 10px;
    background: var(--bg-elev);
    border-radius: 999px;
    letter-spacing: 0.02em;
  }

  /* Carousel controls */
  .carousel-nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
  }
  .carousel-progress {
    flex: 1;
    height: 2px;
    background: var(--line);
    border-radius: 2px;
    margin: 0 28px;
    overflow: hidden;
    max-width: 480px;
  }
  .carousel-progress-bar {
    height: 100%;
    width: 25%;
    background: var(--ink);
    transition: transform 0.35s cubic-bezier(.3,.7,.2,1);
    transform-origin: left;
  }
  .carousel-count {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-dim);
    letter-spacing: 0.05em;
    min-width: 56px;
    text-align: right;
  }
  .carousel-count b { color: var(--ink); font-weight: 500; }
  .carousel-arrows {
    display: flex;
    gap: 8px;
  }
  .arrow-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: var(--bg-card);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--ink);
  }
  .arrow-btn:hover:not(:disabled) {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
  }
  .arrow-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }
  .arrow-btn svg { width: 16px; height: 16px; }

  /* ============ FAQ ============ */
  .faq-section {
    background: var(--bg-elev);
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
  }
  .faq-list {
    border-top: 1px solid var(--line);
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 19px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .faq-q .plus {
    width: 22px; height: 22px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  .faq-q .plus::before,
  .faq-q .plus::after {
    content: '';
    position: absolute;
    inset: 50% 0 auto 0;
    height: 1.5px;
    background: var(--ink);
    transform: translateY(-50%);
  }
  .faq-q .plus::after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.3s ease;
  }
  .faq-item.open .faq-q .plus::after {
    transform: translateY(-50%) rotate(0deg);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.3,.7,.2,1);
  }
  .faq-a-inner {
    padding: 0 48px 28px 0;
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.6;
    max-width: 640px;
  }
  .faq-item.open .faq-a {
    max-height: 400px;
  }

  /* ============ CTA ============ */
  .cta {
    padding: 140px 40px 120px;
    position: relative;
    overflow: hidden;
  }
  .cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    background: var(--ink);
    color: var(--bg);
    border-radius: 24px;
    padding: 80px 72px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .cta-inner::before {
    content: '';
    position: absolute;
    width: 520px; height: 520px;
    right: -180px; top: -180px;
    background: radial-gradient(circle, rgba(44,85,230,0.4) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
  }
  .cta-inner::after {
    content: '';
    position: absolute;
    width: 460px; height: 460px;
    left: -120px; bottom: -220px;
    background: radial-gradient(circle, rgba(255,140,70,0.18) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
  }
  .cta h2 {
    font-family: var(--sans);
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.02;
    max-width: 720px;
  }
  .cta h2 em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
  }
  .cta-sub {
    margin-top: 24px;
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    line-height: 1.55;
  }

  /* Email card */
  .cta-email-card {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 32px 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
  }
  .cta-email-card:hover { border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.06); }
  .cta-email-card .cta-email-body { min-width: 0; }
  .cta-email-card .cta-email-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 10px;
  }
  .cta-email {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(26px, 3vw, 44px);
    color: var(--bg);
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 1.1;
    transition: color 0.2s;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    white-space: nowrap;
  }
  .cta-email:hover { color: var(--accent); }
  .cta-copy {
    position: relative;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--bg);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 20px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    white-space: nowrap;
  }
  .cta-copy:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.28); transform: translateY(-1px); }
  .cta-copy svg { width: 14px; height: 14px; }
  .cta-copy.copied { background: #20a66a; border-color: #20a66a; color: #fff; }
  .cta-copy .copy-label-done { display: none; }
  .cta-copy.copied .copy-label { display: none; }
  .cta-copy.copied .copy-label-done { display: inline; }

  @media (max-width: 640px) {
    .cta-email-card {
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 22px 22px;
    }
    .cta-copy { justify-self: start; }
    .cta-email { white-space: normal; word-break: break-word; }
  }

  .cta-meta {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
  }
  .cta-meta .ping {
    position: relative;
    width: 8px; height: 8px; border-radius: 50%;
    background: #20a66a;
    box-shadow: 0 0 0 0 rgba(32,166,106,0.6);
    animation: ping 2.2s ease-out infinite;
  }

  /* ============ FOOTER ============ */
  footer {
    padding: 40px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--ink-faint);
    font-family: var(--mono);
  }
  footer a { color: var(--ink-dim); text-decoration: none; }
  footer a:hover { color: var(--ink); }

  /* ============ REVEAL ============ */
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal[data-d="1"] { transition-delay: 0.08s; }
  .reveal[data-d="2"] { transition-delay: 0.16s; }
  .reveal[data-d="3"] { transition-delay: 0.24s; }

  /* ============ RESPONSIVE ============ */

  /* Tablet */
  @media (max-width: 1100px) {
    nav { padding: 14px 24px; }
    .hero { padding: 140px 24px 90px; }
    .hero-bar { left: 24px; right: 24px; }
    section.block { padding: 110px 24px; }
    .showcase-head { margin: 0 24px 40px; }
    .cta { padding: 110px 24px 100px; }
    .cta-inner { padding: 64px 48px; }
  }

  /* Large mobile / small tablet */
  @media (max-width: 860px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }

    .hero { padding: 110px 20px 80px; min-height: auto; }
    .hero-bar { left: 20px; right: 20px; bottom: 24px; font-size: 10px; }
    .hero-bar .scroll-hint { display: none; }
    .hero-ctas { gap: 10px; }
    .hero-ctas .btn { padding: 11px 18px; font-size: 13px; }
    .eyebrow { margin-bottom: 22px; font-size: 11px; }
    .hero-sub { margin-top: 24px; max-width: 100%; }

    .clients { padding: 40px 0 60px; }
    .clients-head { margin-bottom: 28px; }
    .client { width: 160px; height: 100px; }
    .client-logo { font-size: 22px; }
    .client.placeholder .client-logo { font-size: 9px; }

    section.block { padding: 80px 20px; }
    .section-title { font-size: clamp(32px, 8vw, 48px); }
    .showcase-head { flex-direction: column; align-items: flex-start; gap: 14px; margin: 0 20px 36px; }
    .showcase-head p { font-size: 15px; }

    .card { border-radius: 14px; }
    .card h3 { font-size: 22px; }
    .card-body { padding: 22px 22px 26px; gap: 12px; }
    .card-desc { font-size: 14px; }
    .carousel-nav { padding: 0 20px; margin-top: 4px; }
    .carousel-progress { margin: 0 16px; }
    .arrow-btn { width: 40px; height: 40px; }

    /* JU card: keep horizontal layout, scale down chrome for mobile */
    .visual-ju { padding: 22px 22px 0; gap: 14px; }
    .visual-ju .shot-desktop { margin-bottom: 22px; padding-top: 20px; }
    .visual-ju .shot-desktop::before { height: 14px; }
    .visual-ju .shot-desktop::after {
      top: 5px; left: 8px; width: 4px; height: 4px;
      box-shadow: 7px 0 0 #ffbd2e, 14px 0 0 #27c93f;
    }
    .visual-ju .shot-phone { flex: 0 0 32%; padding-top: 20px; border-radius: 16px 16px 0 0; }
    .visual-ju .shot-phone::before { top: 7px; width: 36%; height: 7px; }
    .visual-ju .shot-phone .shot-corner { top: 22px; font-size: 8px; }
    .visual-ju .shot-phone .shot-title { margin-top: 12px; font-size: 11px; }
    .visual-ju .shot-desktop .shot-title { font-size: 13px; }
    .visual-ju .shot-desktop .shot-tag,
    .visual-ju .shot-phone .shot-tag { font-size: 8px; }
    .visual-ju .shot-dim { font-size: 8px; bottom: 6px; right: 8px; }

    /* Gpex: two tilted phones — scale down proportionally */
    .visual-gpex { padding: 22px; gap: 10px; }
    .visual-gpex .shot-phone { width: 34%; aspect-ratio: 9/17; border-radius: 18px; }
    .visual-gpex .shot-phone.shift-back { transform: translateY(14px) rotate(-4deg); }
    .visual-gpex .shot-phone.shift-front { transform: rotate(3deg); }
    .visual-gpex .shot-phone .shot-corner { font-size: 8px; top: 8px; left: 10px; }
    .visual-gpex .shot-phone .shot-title { font-size: 12px; }
    .visual-gpex .shot-phone .shot-tag { font-size: 8px; }

    /* Soon */
    .visual-soon { padding: 22px; }
    .soon-mark { font-size: 52px; }

    /* Add placeholder */
    .visual-add { padding: 22px; }
    .add-mark { font-size: 9px; letter-spacing: 0.15em; }
    .add-mark .circle { width: 46px; height: 46px; font-size: 24px; }

    .faq-grid { grid-template-columns: 1fr; gap: 28px; }
    .faq-q { font-size: 17px; padding: 22px 0; gap: 16px; }
    .faq-a-inner { font-size: 14px; padding: 0 0 22px 0; }

    .cta { padding: 72px 20px 64px; }
    .cta-inner { padding: 48px 28px; border-radius: 20px; }
    .cta h2 { font-size: clamp(30px, 8vw, 44px); }
    .cta-sub { font-size: 15px; margin-top: 18px; }
    .cta-email-card { margin-top: 32px; padding: 22px 22px; gap: 16px; }
    .cta-email { font-size: clamp(22px, 6vw, 30px); }
    .cta-meta { font-size: 11px; margin-top: 24px; }

    footer { flex-direction: column; gap: 12px; text-align: center; padding: 28px 20px; }
  }

  /* Small mobile */
  @media (max-width: 480px) {
    .logo { font-size: 15px; }
    .logo-mark { width: 22px; height: 22px; }
    nav .btn { padding: 9px 14px; font-size: 12px; }
    nav .btn svg { display: none; }

    .hero { padding: 96px 16px 72px; }
    .hero-bar { left: 16px; right: 16px; bottom: 16px; font-size: 9.5px; letter-spacing: 0.04em; }
    h1.hero-title { font-size: clamp(38px, 12vw, 52px); line-height: 1.02; }
    .eyebrow { padding: 6px 12px 6px 10px; font-size: 10.5px; }
    .hero-sub { font-size: 15px; margin-top: 20px; }
    .hero-ctas { margin-top: 32px; flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { justify-content: center; width: 100%; padding: 13px 20px; }

    .client { width: 132px; height: 90px; }
    .client-logo { font-size: 20px; }

    section.block { padding: 64px 16px; }
    .section-title { font-size: clamp(28px, 9vw, 38px); }
    .showcase-head { margin: 0 16px 28px; }
    .card h3 { font-size: 20px; }

    .carousel-track { scroll-padding-left: 16px; padding: 8px 16px 32px; }
    .card { flex: 0 0 88vw; }

    /* tighter JU at very small widths */
    .visual-ju { padding: 18px 18px 0; gap: 10px; }
    .visual-ju .shot-desktop { margin-bottom: 18px; padding-top: 18px; }
    .visual-ju .shot-desktop::before { height: 12px; }
    .visual-ju .shot-desktop::after { top: 4px; left: 6px; box-shadow: 6px 0 0 #ffbd2e, 12px 0 0 #27c93f; }
    .visual-ju .shot-phone { flex: 0 0 34%; padding-top: 18px; border-radius: 14px 14px 0 0; }
    .visual-ju .shot-phone::before { top: 6px; height: 6px; }
    .visual-ju .shot-desktop .shot-title { font-size: 11px; }
    .visual-ju .shot-phone .shot-title { margin-top: 8px; font-size: 10px; }
    /* Gpex small-mobile tweaks */
    .visual-gpex { padding: 16px; gap: 8px; }
    .visual-gpex .shot-phone { width: 38%; aspect-ratio: 9/16; border-radius: 16px; }
    .visual-gpex .shot-phone.shift-back { transform: translateY(10px) rotate(-4deg); }
    .visual-gpex .shot-phone .shot-title { font-size: 11px; }
    .visual-gpex .shot-phone .shot-tag { font-size: 7.5px; }

    /* Soon / Add */
    .visual-soon { padding: 18px; }
    .soon-mark { font-size: 42px; }
    .visual-add { padding: 18px; }
    .add-mark .circle { width: 42px; height: 42px; font-size: 22px; }
    .add-mark { font-size: 8.5px; }

    .cta { padding: 64px 16px 56px; }
    .cta-inner { padding: 36px 20px; border-radius: 18px; }
    .cta h2 { font-size: clamp(26px, 9vw, 36px); }
    .cta-email-card { padding: 18px 18px; border-radius: 16px; }
    .cta-email { font-size: clamp(20px, 6.5vw, 26px); white-space: normal; word-break: break-word; }
    .cta-copy { width: 100%; justify-content: center; padding: 12px 16px; }
  }
