:root {
    --bg: #f4f6f9;
    --bg-raised: #ffffff;
    --bg-raised-2: #eef1f6;
    --line: #dde3ec;
    --text: #161a22;
    --text-muted: #565f70;
    --text-faint: #838ca0;
    --amber: #c9720f;
    --amber-dim: #b8802e;
    --blue: #2f6f9e;
    --green: #237a4f;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 6px;
    --wrap: 1120px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  }

  a { color: inherit; }

  .wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 28px;
  }

  /* background texture: faint blueprint grid */
  .grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(47,111,158,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(47,111,158,0.07) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 75%);
  }

  header, main, footer { position: relative; z-index: 1; }

  /* ---------- header ---------- */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    max-width: var(--wrap);
    margin: 0 auto;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
  }

  .logo-mark {
    width: 22px;
    height: 22px;
    display: block;
  }

  nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  nav a.nav-link {
    font-size: 0.92rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s ease;
  }
  nav a.nav-link:hover { color: var(--text); }
  nav a.nav-link.active { color: var(--text); font-weight: 600; }

  .btn {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 18px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  }
  .btn-primary {
    background: var(--amber);
    color: #fffaf3;
  }
  .btn-primary:hover { transform: translateY(-1px); background: #b3660c; }
  .btn-ghost {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
  }
  .btn-ghost:hover { border-color: var(--text-faint); }

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

  /* ---------- hero ---------- */
  .hero {
    padding: 64px 28px 40px;
    max-width: var(--wrap);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
  }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding-top: 40px; }
  }

  .eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--blue);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
  }
  .eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    display: inline-block;
  }

  h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.08s forwards;
  }
  h1 span { color: var(--amber); }

  .hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 46ch;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.16s forwards;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 34px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.24s forwards;
  }

  .hero-ctas .btn { padding: 13px 22px; font-size: 0.95rem; }

  .trust-row {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--text-faint);
    opacity: 0;
    animation: fadeUp 0.6s ease 0.3s forwards;
  }
  .trust-row span { display: flex; align-items: center; gap: 7px; }
  .trust-row svg { width: 14px; height: 14px; stroke: var(--green); flex-shrink: 0; }

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

  /* ---------- signature: fee calculator ---------- */
  .calc-card {
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 26px 26px 24px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.2s forwards;
  }

  .calc-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 22px;
  }

  .calc-title {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-faint);
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .calc-badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--amber);
    border: 1px solid var(--amber-dim);
    border-radius: 20px;
    padding: 3px 10px;
  }

  .calc-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
  }

  .calc-price-row .cur {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    color: var(--text-faint);
  }

  #priceOut {
    font-family: var(--font-mono);
    font-size: 2.6rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
  }

  input[type="range"] {
    width: 100%;
    margin: 16px 0 24px;
    accent-color: var(--amber);
  }

  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }

  .split-item {
    background: var(--bg-raised-2);
    border-radius: 8px;
    padding: 14px 16px;
  }

  .split-label {
    font-size: 0.76rem;
    color: var(--text-faint);
    margin-bottom: 6px;
  }

  .split-value {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
  }

  .split-item.you .split-value { color: var(--green); }

  .calc-foot {
    font-size: 0.78rem;
    color: var(--text-faint);
    line-height: 1.5;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }

  /* ---------- sections ---------- */
  section { padding: 84px 28px; }

  .section-head {
    max-width: 640px;
    margin: 0 auto 52px;
    text-align: center;
  }

  .section-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }

  h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    letter-spacing: -0.01em;
    margin-bottom: 14px;
  }

  .section-desc {
    color: var(--text-muted);
    font-size: 1rem;
  }

  /* ---------- showcase ---------- */
  .showcase-wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .showcase-track {
    flex: 1;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 4px 12px;
    scrollbar-width: none;
  }
  .showcase-track::-webkit-scrollbar { display: none; }

  .showcase-card {
    text-decoration: none;
    color: inherit;
    flex: 0 0 auto;
    width: 260px;
    scroll-snap-align: start;
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
  }
  .showcase-card:hover { border-color: var(--text-faint); transform: translateY(-3px); }

  .showcase-thumb {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .showcase-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 18px 18px;
  }
  .showcase-thumb img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .showcase-thumb span {
    position: relative;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    background: rgba(0,0,0,0.25);
    padding: 4px 10px;
    border-radius: 20px;
  }
  .thumb-1 { background: linear-gradient(135deg, #2c3a52, #1c2433); }

  .showcase-body { padding: 16px 18px 18px; }
  .showcase-body h3 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .showcase-creator {
    font-size: 0.8rem;
    color: var(--text-faint);
    margin-bottom: 10px;
  }
  .showcase-price {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--amber);
  }

  .showcase-cta {
    text-decoration: none;
    color: var(--text);
    display: block;
    border-style: dashed;
    background: var(--bg-raised-2);
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  }
  .showcase-cta:hover {
    border-color: var(--amber);
    background: var(--bg-raised);
    transform: translateY(-3px);
  }

  .showcase-cta-inner {
    height: 100%;
    min-height: 268px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 26px 22px;
    text-align: left;
  }

  .showcase-cta-plus {
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1;
    color: var(--amber);
    border: 1px solid var(--amber-dim);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .showcase-cta h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .showcase-cta p {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 16px;
  }

  .showcase-cta-link {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--amber);
  }

  .showcase-arrow {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--bg-raised);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
  }
  .showcase-arrow svg { width: 16px; height: 16px; stroke: var(--text); }
  .showcase-arrow:hover { border-color: var(--text-faint); background: var(--bg-raised-2); }

  @media (max-width: 640px) {
    .showcase-arrow { display: none; }
  }

  .showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
  }

  .showcase-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--line);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s ease, transform 0.15s ease;
  }
  .showcase-dot.active {
    background: var(--amber);
    transform: scale(1.3);
  }

  /* value props */
  .values {
    max-width: var(--wrap);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

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

  .value-card {
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 28px 26px;
    transition: border-color 0.2s ease, transform 0.2s ease;
  }
  .value-card:hover { border-color: var(--text-faint); transform: translateY(-3px); }

  .value-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--bg-raised-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .value-icon svg { width: 19px; height: 19px; stroke: var(--amber); }

  .value-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  /* how it works — numbered, justified: real sequence */
  .steps {
    max-width: 780px;
    margin: 0 auto;
  }

  .step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    padding: 26px 0;
    border-top: 1px solid var(--line);
  }
  .step:last-child { border-bottom: 1px solid var(--line); }

  .step-num {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--amber-dim);
  }

  .step h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .step p {
    color: var(--text-muted);
    font-size: 0.92rem;
    max-width: 52ch;
  }

  /* pricing table */
  .price-table-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
  }

  table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }

  th, td {
    text-align: left;
    padding: 16px 22px;
    border-bottom: 1px solid var(--line);
  }

  th {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-faint);
    background: var(--bg-raised-2);
  }

  tr:last-child td { border-bottom: none; }

  td.num, th.num { font-family: var(--font-mono); text-align: right; }

  .row-highlight td { color: var(--amber); font-weight: 600; }

  /* waitlist */
  .waitlist {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }

  .waitlist-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
  }

  @media (max-width: 560px) {
    .waitlist-form { flex-direction: column; }
  }

  .waitlist-form input[type="email"] {
    flex: 1;
    padding: 13px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--bg-raised);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
  }
  .waitlist-form input[type="email"]:focus {
    outline: 2px solid var(--blue);
    outline-offset: 1px;
  }
  .waitlist-form input[type="email"]::placeholder { color: var(--text-faint); }

  .waitlist-note {
    font-size: 0.8rem;
    color: var(--text-faint);
    margin-top: 14px;
  }

  #waitlistMsg {
    margin-top: 14px;
    font-size: 0.88rem;
    color: var(--green);
    display: none;
  }

  /* footer */
  footer {
    border-top: 1px solid var(--line);
    padding: 40px 28px;
  }

  .footer-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-inner p { font-size: 0.82rem; color: var(--text-faint); }

  .footer-links { display: flex; gap: 24px; }
  .footer-links a { font-size: 0.82rem; color: var(--text-faint); text-decoration: none; }
  .footer-links a:hover { color: var(--text-muted); }

  /* ---------- browse page ---------- */
  .browse-hero {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 56px 28px 36px;
  }

  .browse-hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }

  .browse-hero p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 56ch;
    margin-bottom: 28px;
  }

  .browse-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
  }

  .browse-search {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 11px 14px;
  }
  .browse-search svg { width: 16px; height: 16px; stroke: var(--text-faint); flex-shrink: 0; }
  .browse-search input {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
    width: 100%;
  }
  .browse-search input::placeholder { color: var(--text-faint); }

  .browse-sort {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-muted);
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 11px 14px;
    cursor: pointer;
  }

  .filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
  }

  .filter-chip {
    font-family: var(--font-body);
    font-size: 0.84rem;
    color: var(--text-muted);
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 7px 16px;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  }
  .filter-chip:hover { border-color: var(--text-faint); }
  .filter-chip.active {
    background: var(--amber);
    border-color: var(--amber);
    color: #fffaf3;
  }

  .browse-grid-wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 28px 90px;
  }

  .browse-count {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-faint);
    margin-bottom: 20px;
  }

  .browse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
  }

  .browse-card {
    text-decoration: none;
    color: inherit;
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
    display: block;
  }
  .browse-card:hover { border-color: var(--text-faint); transform: translateY(-3px); }

  .browse-thumb {
    height: 150px;
    position: relative;
    overflow: hidden;
  }
  .browse-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .browse-thumb-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fffaf3;
    background: rgba(0,0,0,0.55);
    padding: 3px 9px;
    border-radius: 20px;
  }

  .browse-body { padding: 16px 18px 18px; }
  .browse-body h3 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .browse-creator {
    font-size: 0.8rem;
    color: var(--text-faint);
    margin-bottom: 10px;
  }
  .browse-price {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--amber);
  }

  .browse-card.browse-cta {
    border-style: dashed;
    background: var(--bg-raised-2);
  }
  .browse-card.browse-cta:hover { border-color: var(--amber); background: var(--bg-raised); }
  .browse-cta-inner {
    height: 100%;
    min-height: 234px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 20px;
  }
  .browse-cta-plus {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1;
    color: var(--amber);
    border: 1px solid var(--amber-dim);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }
  .browse-cta-inner h3 { font-size: 0.95rem; margin-bottom: 6px; }
  .browse-cta-inner p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 14px; }
  .browse-cta-link { font-family: var(--font-mono); font-size: 0.78rem; color: var(--amber); }

  .browse-empty {
    display: none;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-faint);
    font-size: 0.92rem;
  }

  /* ---------- product page ---------- */
  .breadcrumb {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 24px 28px 0;
    font-size: 0.84rem;
    color: var(--text-faint);
  }
  .breadcrumb a { color: var(--text-faint); text-decoration: none; }
  .breadcrumb a:hover { color: var(--text-muted); }

  .product-hero {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 28px 28px 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 44px;
    align-items: start;
  }
  @media (max-width: 860px) {
    .product-hero { grid-template-columns: 1fr; }
  }

  .product-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
  }
  .product-image img { width: 100%; display: block; }

  .product-info h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .product-creator {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 22px;
  }
  .product-creator a { color: var(--blue); text-decoration: none; }
  .product-creator a:hover { text-decoration: underline; }

  .product-buybox {
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 26px;
  }
  .product-price {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .product-price-note {
    font-size: 0.8rem;
    color: var(--text-faint);
    margin-bottom: 16px;
  }
  .product-buybox .btn { width: 100%; justify-content: center; padding: 13px; font-size: 0.95rem; }
  .product-buybox-foot {
    font-size: 0.78rem;
    color: var(--text-faint);
    margin-top: 14px;
    line-height: 1.5;
  }

  .product-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--text-muted);
  }
  .product-meta div { display: flex; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); padding-top: 10px; }
  .product-meta div span:first-child { color: var(--text-faint); }

  .product-body {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 28px 90px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 44px;
  }
  @media (max-width: 860px) {
    .product-body { grid-template-columns: 1fr; }
  }

  .product-body h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 14px;
  }
  .product-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .feature-list { list-style: none; margin-bottom: 20px; }
  .feature-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--text-muted);
    padding: 9px 0;
    border-top: 1px solid var(--line);
  }
  .feature-list li:first-child { border-top: none; }
  .feature-list svg { width: 16px; height: 16px; stroke: var(--green); flex-shrink: 0; margin-top: 2px; }

  /* ---------- apply page ---------- */
  .apply-hero {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 28px 20px;
    text-align: left;
  }

  .apply-hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 3.8vw, 2.7rem);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }

  .apply-sub {
    color: var(--text-muted);
    font-size: 1.02rem;
    max-width: 60ch;
    margin-bottom: 40px;
  }

  .apply-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 10px;
  }
  @media (max-width: 720px) {
    .apply-perks { grid-template-columns: 1fr; }
  }

  .apply-perk {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  .apply-perk-num {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--amber-dim);
    flex-shrink: 0;
    padding-top: 2px;
  }
  .apply-perk h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .apply-perk p {
    font-size: 0.84rem;
    color: var(--text-muted);
  }

  .apply-form-section {
    padding: 50px 28px 100px;
  }

  .apply-form-wrap {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 36px;
  }
  @media (max-width: 560px) {
    .apply-form-wrap { padding: 26px 20px; }
  }

  .form-row {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .form-row label {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text);
  }

  .form-row input[type="text"],
  .form-row input[type="email"],
  .form-row input[type="url"],
  .form-row select,
  .form-row textarea {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--bg-raised-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 11px 13px;
    width: 100%;
    outline: none;
    transition: border-color 0.15s ease;
  }
  .form-row input:focus,
  .form-row select:focus,
  .form-row textarea:focus {
    border-color: var(--blue);
  }
  .form-row textarea { resize: vertical; min-height: 90px; }
  .form-row input::placeholder,
  .form-row textarea::placeholder { color: var(--text-faint); }

  .form-row-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
  .form-row-checkbox input {
    margin-top: 3px;
    accent-color: var(--amber);
    flex-shrink: 0;
  }
  .form-row-checkbox label {
    font-weight: 400;
    font-size: 0.84rem;
    color: var(--text-muted);
  }

  .apply-submit {
    width: 100%;
    justify-content: center;
    padding: 13px;
    font-size: 0.95rem;
    margin-top: 4px;
  }

  .apply-form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-faint);
    margin-top: 14px;
  }

  .apply-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
  }
  .apply-success-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-raised-2);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .apply-success-icon svg { width: 22px; height: 22px; stroke: var(--green); }
  .apply-success h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .apply-success p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 40ch;
    margin-bottom: 22px;
  }

  :focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
  }
