/* ========================================================
   InkSight — Landing Page
   Tokens shared with the product UI kit
   ======================================================== */

   :root{
    --paper: #F1F0EE;
    --paper-deep: #E4E2DD;
    --ink: #131216;
    --charcoal: #201F22;
    --orange: #E06D2A;
    --sanguine: #8A3A2B;
    --white: #FBF8F2;
    --line: rgba(19,18,22,0.14);
    --skin-line: rgba(19,18,22,0.28);
  
    --font-display: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Inter', sans-serif;
  
    --container: 1180px;
    --radius: 14px;
    --shadow-soft: 0 1px 2px rgba(19,18,22,0.05), 0 6px 16px rgba(19,18,22,0.07);
    --shadow-lift: 0 2px 4px rgba(19,18,22,0.06), 0 10px 24px rgba(19,18,22,0.1);
  }
  
  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  body{
    margin:0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
  }
  img,svg{ display:block; max-width:100%; }
  a{ color: inherit; text-decoration:none; }
  
  .container{
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
  }
  
  .mono-tiny{
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    opacity: 0.6;
  }
  
  .eyebrow{
    display:inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sanguine);
    margin-bottom: 18px;
  }
  .eyebrow.center{ display:block; text-align:center; }
  
  /* ---------------- reveal-on-scroll ---------------- */
  .reveal{
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.is-visible{ opacity: 1; transform: translateY(0); }
  
  /* ================= BUTTONS ================= */
  .btn{
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    padding: 14px 26px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition: transform .12s ease, filter .12s ease;
  }
  .btn-dark{ background: var(--ink); color: var(--white); }
  .btn-dark:hover{ filter: brightness(1.35); transform: translateY(-1px); }
  .btn-small{ font-size: 12px; padding: 10px 20px; }
  
  /* App Store badge */
  .app-store-badge{
    display:inline-flex;
    align-items:center;
    gap: 12px;
    background: var(--ink);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 12px;
    width: fit-content;
  }
  .app-store-badge:hover{ filter: brightness(1.3); }
  .app-store-badge .badge-text{ display:flex; flex-direction:column; line-height:1.1; font-weight:600; font-size:17px; }
  .app-store-badge .badge-text small{ font-size: 10px; font-weight:400; opacity:0.75; text-transform:uppercase; letter-spacing:0.5px; }
  .app-store-badge.on-dark{ background: var(--white); color: var(--ink); }
  
  /* ================= HEADER ================= */
  .site-header{
    position: sticky;
    top:0;
    z-index: 50;
    background: rgba(241,240,238,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 18px 32px;
  }
  .logo{
    font-family: var(--font-display);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  display:inline-flex;
  align-items:center;
  }
  .logo span{ color: var(--orange); }
.logo-image{
  display:block;
  width: auto;
}
.logo-image.header-logo{
  height: 38px;
}
.logo-image.footer-logo{
  height: 38px;
}
  .accent{ color: var(--orange); }
  .nav-links{ display:flex; align-items:center; gap: 32px; }
  .nav-links a:not(.nav-cta){ font-size: 14px; font-weight: 500; opacity:0.75; }
  .nav-links a:not(.nav-cta):hover{ opacity:1; color: var(--orange); }
  .nav-links .nav-cta{ opacity: 1; margin-left: 8px; }
  .nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
  .nav-toggle span{ width:22px; height:2px; background:var(--ink); display:block; }
  
  /* ================= PLACEHOLDER (temp, swap for real art/screens later) ================= */
  .ph{
    background: var(--paper-deep);
    border: none !important;
    box-shadow: var(--shadow-soft);
    display:flex;
    align-items:center;
    justify-content:center;
    position: relative;
  }
  .ph-label{
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0.4;
  }
  .style-ph{
    width: 96px;
    height: 96px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
  }
  .style-ph img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .body-outline.ph{
    width: 110px;
    aspect-ratio: 120/200;
    border-radius: 10px;
  }
  .body-outline.ph .ph-label{ writing-mode: vertical-rl; }
  
  /* ================= DARK PLATE (full-bleed dark section, like CTA) ================= */
  .plate.dark{
    background: var(--ink);
    color: var(--white);
    border-top: none;
  }
  .plate.dark .plate-sub{ color: var(--white); opacity: 0.65; }
  .plate.dark .plate-no{
    background: rgba(224, 109, 42, 0.18);
    color: var(--orange);
  }
.plate.dark .tryon-item > .mono-tiny{ color: var(--white); opacity: 0.55; }
  .plate.dark + .plate{ border-top: none; }
  
  .visual-tag{
    display:flex;
    align-items:center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--orange);
    margin-bottom: 20px;
  }
  .visual-tag::before{
    content:'';
    width: 6px; height:6px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink:0;
  }
  
/* ================= HERO ================= */
.hero{
  padding: 88px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content:'';
  position:absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(224,109,42,0.16) 0%, rgba(224,109,42,0) 70%);
  pointer-events:none;
}
.hero::after{
  content:'';
  position:absolute;
  bottom: -25%;
  left: -15%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(138,58,43,0.12) 0%, rgba(138,58,43,0) 70%);
  pointer-events:none;
}
  .hero-inner{
    display:grid;
  grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items:center;
  position: relative;
  z-index: 1;
  }
  .hero-title{
    font-family: var(--font-display);
    font-size: 52px;
    line-height: 1.02;
    text-transform: uppercase;
    margin: 0 0 24px;
  }
  .hero-sub{
    font-size: 17px;
    line-height: 1.65;
    opacity: 0.75;
    max-width: 480px;
    margin: 0 0 32px;
  }
  
.hero-visual{
  position:relative;
  display:flex;
  justify-content:center;
  padding: 0 24px 48px 0;
}
.hero-shot{
  position: relative;
  width: 65%;
  max-width: 420px;
}
.hero-main{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: var(--shadow-lift);
}
.hero-prompt{
  position: absolute;
  right: -18%;
  bottom: -14%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: visible;
  box-shadow: var(--shadow-lift);
  background: #ffffff;
}
.hero-prompt img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.hero-prompt-badge{
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 6px 12px;
  border-radius: 100px;
}
  .chip{
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border: 1.5px solid var(--ink);
    border-radius: 100px;
    background: var(--white);
    color: var(--ink);
    white-space: nowrap;
  }
  .chip.active{ background: var(--ink); color: var(--white); }
  .prompt-chip{
    position:absolute;
  top: 16px;
  left: 16px;
  right:16px;
    font-family: var(--font-mono);
    font-size: 10px;
    text-align:left;
    border-radius: 8px;
    z-index:2;
  }
  .chip-row{
    position:absolute;
  top:16px; left:16px; right:16px;
    display:flex;
    gap: 6px;
    z-index:2;
  }
  .resize-handles rect{ fill: var(--orange); }
  
  /* ================= FEATURES INTRO ================= */
  .features-intro{ padding: 40px 0 20px; text-align:center; }
  .section-title{
    font-family: var(--font-display);
    font-size: 38px;
    text-transform: uppercase;
    max-width: 780px;
    margin: 0 auto 18px;
    line-height: 1.08;
  }
  .section-title.center{ text-align:center; }
  .section-sub{
    font-size: 16px;
    opacity:0.7;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* ================= FEATURE PLATES ================= */
  .plate{ padding: 76px 0; border-top: 1px solid var(--line); }
  .plate-inner{
    display:grid;
  grid-template-columns: 0.7fr 1.3fr;
    gap: 64px;
    align-items:center;
  }
.plate.reverse .plate-inner{ grid-template-columns: 1.3fr 0.7fr; }
  .plate.reverse .plate-copy{ order:2; }
  .plate.reverse .plate-visual{ order:1; }

  .plate.stack .plate-inner{
    grid-template-columns: 1fr;
    gap: 44px;
    justify-items: center;
    text-align: center;
  }
  .plate.stack .plate-copy{
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .plate.stack .plate-sub{
    max-width: 580px;
  }
  .plate.stack .plate-visual{
    width: min(960px, 100%);
  }
  .plate.stack .photo-chain{
    gap: 20px;
  }
  .plate.stack .chain-step{
    max-width: 280px;
  }
  .plate.stack .chain-arrow{
    font-size: 28px;
  }
  
  .plate-no{
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sanguine);
    display: inline-block;
    background: rgba(138, 58, 43, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    transform: rotate(-2deg);
  }
  .plate-title{
    font-family: var(--font-display);
    font-size: 32px;
    text-transform: uppercase;
    line-height: 1.08;
    margin: 0 0 16px;
  }
  .plate-sub{ font-size: 15.5px; line-height: 1.65; opacity:0.72; max-width: 460px; }
  
  .plate-visual{ position:relative; }
  
  /* ---- generic mock visual shell (no border box — content sits open) ---- */
  .mock-card, .photo-chain, .tryon-row, .style-grid{
    padding: 0;
  }
  
  /* --- feature 01 grid --- */
.mock-card{
  display:flex;
  flex-direction:column;
  gap: 18px;
}
  .mock-prompt-bar{
    background: var(--paper);
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: var(--shadow-soft);
  color: var(--ink);
  }
.mock-prompt-bar p{ margin: 4px 0 0; font-size: 14px; font-weight:500; color: var(--ink); }
.chip-style{ align-self: flex-start; }
  .variant-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
  gap: 18px;
  }
  .variant{
    background: #ffffff;
    border-radius: 10px;
    padding: 14px;
    position:relative;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }
  .variant img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
  }
  .variant svg{ width:100%; height:80px; color: var(--ink); }
  .variant.selected{ box-shadow: 0 0 0 2px var(--orange), var(--shadow-soft); }
  .variant-actions{
    position:absolute; bottom:8px; right:8px;
    display:flex; gap:6px;
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
  }
  .variant-actions span{ background: var(--ink); color: var(--white); padding:3px 7px; border-radius: 6px; }
  
  /* --- feature 02 chain --- */
  .photo-chain{ display:flex; align-items:center; justify-content:space-between; gap: 10px; }
  .chain-step{ display:flex; flex-direction:column; align-items:center; gap: 10px; flex:1; }
  .photo-frame{
    width: 100%;
    aspect-ratio: 1;
    background: #ffffff;
    border-radius: 10px;
    display:flex; align-items:center; justify-content:center;
    padding: 0;
    overflow: hidden;
    color: var(--ink);
    box-shadow: var(--shadow-soft);
  }
  .photo-frame img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .photo-frame.result{ background: #ffffff; color: var(--white); }
  .photo-frame.result img{ object-fit: contain; }
  .photo-frame svg{ width:70%; }
  .style-pick{
    width:100%;
    aspect-ratio: 1;
    position: relative;
    background: #ffffff;
    border: 2.5px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
  }
  .style-pick.selected{
    border-color: var(--orange);
  }
  .style-pick img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #ffffff;
  }
  .style-check{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(19,18,22,0.18);
  }
  .chain-arrow{ font-size: 20px; color: var(--sanguine); flex-shrink:0; }
  
  /* --- feature 03 try-on --- */
  .tryon-row{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap: 12px;
  }
  .tryon-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    flex: 1;
    min-width: 0;
  }
  .body-outline{
    width: 100%;
    color: var(--ink);
    border-radius: 12px;
    overflow: hidden;
    background: var(--paper-deep);
    box-shadow: var(--shadow-soft);
  }
  .body-outline img{
    width: 100%;
    height: auto;
    display: block;
  }
  .handle-marks rect{ fill: var(--orange); }
  
  /* --- feature 04 style grid --- */
  .grid-hint{
    display:flex;
    align-items:center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--sanguine);
    opacity: 0.8;
    margin-bottom: 22px;
  }
  .style-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
  gap: 26px 18px;
  }
  .style-cell{
  display:flex; flex-direction:column; align-items:center; gap:12px;
    padding: 10px;
    cursor: pointer;
  }
  .style-cell:hover .style-ph{ box-shadow: 0 0 0 2px var(--orange), var(--shadow-soft); }
  .style-cell.is-active .style-ph{ box-shadow: 0 0 0 2px var(--orange), var(--shadow-soft); }
  .style-cell svg{ width: 56px; height:56px; color: var(--ink); }
  .zoom-hint{
    position:absolute;
    top: 8px; right: 8px;
    width: 22px; height:22px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    font-size: 14px;
    line-height:1;
    display:flex; align-items:center; justify-content:center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity .15s ease, transform .15s ease;
  }
  .style-cell:hover .zoom-hint{ opacity: 1; transform: scale(1); }
  .lettering-sample{
    font-family: var(--font-display);
  font-size: 34px;
  height:96px;
    display:flex; align-items:center;
    font-style: italic;
    letter-spacing: 1px;
  }
  
  /* --- style stage: preview covers the 3x3 grid area, no screen dimming --- */
  .style-stage{
    position: relative;
  }
  .style-preview{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: var(--paper);
    border-radius: 16px;
    opacity: 0;
    transform: scale(0.98);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .style-preview.is-open{ opacity: 1; transform: scale(1); pointer-events: auto; }
  .style-preview-image{
    width: min(380px, 88%);
    aspect-ratio: 1;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
  }
  .style-preview-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .style-preview-title{
    font-family: var(--font-display);
    font-size: 24px;
    text-transform: uppercase;
  }
  .style-preview-close{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .style-preview-close:hover{ filter: brightness(1.3); }

  /* --- feature 05 collections --- */
  .history-shots{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 16px;
    width: 100%;
  }
  .history-shot{
    flex: 1;
    min-width: 0;
    max-width: 300px;
    aspect-ratio: 375 / 812;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    background: #ffffff;
  }
  .history-shot img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  #collections .plate-inner{
    grid-template-columns: 0.75fr 1.25fr;
  }

  /* ================= CTA ================= */
  .cta{
    background: var(--ink);
    color: var(--white);
  padding: 90px 0 76px;
    text-align:center;
  }
  .cta-inner{ display:flex; flex-direction:column; align-items:center; gap: 22px; }
  .cta-title{
    font-family: var(--font-display);
    font-size: 42px;
    text-transform: uppercase;
    margin:0;
    max-width: 640px;
  }
  .cta-sub{ font-size: 16px; opacity:0.7; max-width: 500px; line-height:1.6; margin:0; }
  
  /* ================= FOOTER ================= */
.site-footer{
  padding: 36px 0;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
}
.site-footer::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height: 1px;
  background: rgba(255,255,255,0.14);
}
  .footer-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-links{ display:flex; gap: 26px; flex-wrap:wrap; }
.footer-links a{ font-size: 13px; opacity:0.65; color: var(--white); }
  .footer-links a:hover{ opacity:1; color:var(--orange); }
  .footer-copy{
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    opacity: 1;
  }
  
  /* ================= RESPONSIVE ================= */
  @media (max-width: 900px){
    .hero-inner{ grid-template-columns: 1fr; }
    .hero-shot{ width: 70%; max-width: 320px; }
    .hero-prompt{ width: 50%; right: -12%; bottom: -10%; border-radius: 12px; }
    .hero-prompt img{ border-radius: 12px; }
    .plate-inner, .plate.reverse .plate-inner, .plate.stack .plate-inner{ grid-template-columns: 1fr; gap: 36px; }
    .plate.reverse .plate-copy, .plate.reverse .plate-visual{ order: initial; }
    .plate.stack .chain-step{ max-width: 320px; }
    .hero-title{ font-size: 40px; }
    .section-title{ font-size: 30px; }
    .nav-links{
      display:none;
      position:absolute;
      top: 100%; left:0; right:0;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
      flex-direction:column;
      align-items:stretch;
      padding: 20px 32px 24px;
      gap: 18px;
    }
    .nav-links.is-open{ display:flex; }
    .nav-links .nav-cta{
      margin-left: 0;
      margin-top: 4px;
      width: 100%;
      justify-content: center;
    }
    .nav-toggle{ display:flex; }
    .header-inner{
      position:relative;
      padding-top: 24px;
      padding-bottom: 24px;
    }
    #collections .plate-inner{ grid-template-columns: 1fr; }
    .photo-chain{ flex-direction:column; }
    .chain-arrow{ transform: rotate(90deg); }
    .history-shots{ justify-content: center; flex-wrap: nowrap; gap: 12px; }
    .history-shot{
      max-width: min(280px, 46vw);
      border-radius: 16px;
    }
  }
  
  @media (max-width: 560px){
    .container{ padding: 0 20px; }
    .header-inner{ padding-top: 22px; padding-bottom: 22px; }
    .history-shot{ border-radius: 12px; }
    .style-grid{ grid-template-columns: repeat(3, 1fr); gap: 4px; }
    .style-cell svg, .lettering-sample{ width: 36px; height:36px; }
    .hero-title{ font-size: 32px; }
    .tryon-row{ flex-wrap: wrap; }
  }
  
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    .reveal{ transition:none; opacity:1; transform:none; }
  }

/* ================= LEGAL PAGES ================= */
.legal-page{
  background: var(--white);
}
.legal-page .site-header{
  background: rgba(251,248,242,0.88);
}
.legal-shell{
  padding: 56px 0 96px;
}
.legal-head{
  max-width: 760px;
  margin: 0 auto 42px;
}
.legal-title{
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.legal-updated{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--sanguine);
  opacity: 0.6;
}
.legal-copy{
  max-width: 760px;
  min-width: 0;
  margin: 0 auto;
}
.legal-section{
  padding: 0 0 30px;
  margin-bottom: 30px;
}
.legal-section:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-section h2{
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.legal-copy h3{
  font-size: 16px;
  line-height: 1.5;
  margin: 20px 0 10px;
}
.legal-copy blockquote{
  margin: 0 0 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--orange);
  background: var(--paper);
  border-radius: 10px;
}
.legal-copy blockquote p:last-child{
  margin-bottom: 0;
}
.legal-copy p,
.legal-copy li{
  font-size: 16px;
  line-height: 1.65;
}
.legal-copy p{
  margin: 0 0 16px;
}
.legal-copy ul{
  margin: 0 0 18px 20px;
  padding: 0;
}
.legal-copy li + li{
  margin-top: 10px;
}
.legal-note{
  margin-top: 22px;
  padding-top: 18px;
  font-size: 14px;
  opacity: 0.72;
}

@media (max-width: 560px){
  .legal-shell{
    padding: 40px 0 72px;
  }
  .legal-title{
    font-size: 32px;
  }
  .legal-section h2{
    font-size: 22px;
  }
}

/* ================= SUPPORT PAGE ================= */
.support-page{
  background: var(--white);
}
.support-page .site-header{
  background: rgba(251,248,242,0.88);
}
.support-shell{
  padding: 56px 0 96px;
}
.support-wrap{
  max-width: 760px;
}
.support-head{
  max-width: 680px;
  margin-bottom: 34px;
}
.support-title{
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.support-sub{
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.74;
  margin: 0;
  max-width: 680px;
}
.support-card{
  max-width: 680px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.support-form{
  display:flex;
  flex-direction:column;
  gap: 18px;
}
.form-row{
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.form-row label{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--sanguine);
}
.form-row input,
.form-row textarea{
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.form-row textarea{
  min-height: 180px;
  resize: vertical;
}
.form-row input::placeholder,
.form-row textarea::placeholder{
  color: rgba(19,18,22,0.46);
}
.support-success{
  max-width: 560px;
}
.support-success h2{
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.support-success p{
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.74;
}

@media (max-width: 560px){
  .support-shell{
    padding: 40px 0 72px;
  }
  .support-title{
    font-size: 32px;
  }
  .support-card{
    padding: 22px;
  }
}