  :root {
    --milk: #FBF7F4; --milk-deep: #F4ECE6; --blush: #F7C9D3; --blush-deep: #E9899D;
    --rose-ink: #8C4A5A; --sage: #A9C4A4; --sage-deep: #6F9269; --honey: #F4C77B;
    --sky: #A8C8E8; --ink: #4A3D40; --ink-soft: #8E7E81; --line: #EFE3DD; --white: #fff;
    --font-display: 'Zen Maru Gothic', sans-serif;
    --font-body: 'Zen Kaku Gothic New', sans-serif;
    --font-num: 'Quicksand', sans-serif;
    --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-pill: 999px;
    --shadow-soft: 0 8px 30px rgba(140,74,90,.10);
    --shadow-card: 0 4px 20px rgba(140,74,90,.08);
    --shadow-pop: 0 12px 32px rgba(233,137,157,.28);
    --maxw: 1120px;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--ink); background: var(--milk); line-height: 1.75; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  h1,h2,h3 { font-family: var(--font-display); color: var(--rose-ink); line-height: 1.35; }

  /* ===== Header ===== */
  header { position: sticky; top: 0; z-index: 50; background: rgba(251,247,244,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
  .brand { display: flex; align-items: center; gap: 10px; }
  .brand .logo { width: 38px; height: 38px; object-fit: cover; display: block; }
  .brand .name { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--rose-ink); }
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--ink); transition: color .2s; }
  .nav-links a:hover { color: var(--blush-deep); }
  .nav-cta { background: var(--blush-deep); color: #fff; padding: 10px 20px; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 500; font-size: 14px; box-shadow: var(--shadow-pop); }
  .nav-links a.nav-cta:hover { color: #fff; background: var(--rose-ink); }
  .menu-btn { display: none; background: none; border: none; font-size: 24px; color: var(--rose-ink); cursor: pointer; }

  /* ===== Hero ===== */
  .hero { position: relative; padding: 72px 0 88px; background: radial-gradient(1200px 600px at 80% -10%, #FCE4EA 0%, transparent 60%), radial-gradient(900px 500px at 0% 20%, #FBF0E4 0%, transparent 55%); overflow: hidden; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
  .eyebrow { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); color: var(--rose-ink); font-size: 13px; font-weight: 500; padding: 7px 15px; border-radius: var(--r-pill); box-shadow: var(--shadow-card); }
  .hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; margin: 22px 0 18px; letter-spacing: .5px; }
  .hero h1 .accent { color: var(--blush-deep); }
  .hero .lead { font-size: 17px; color: var(--ink); max-width: 30em; margin-bottom: 30px; }
  .store-row { display: flex; gap: 14px; flex-wrap: wrap; }
  .store-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 14px; transition: transform .15s, box-shadow .15s; }
  .store-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(74,61,64,.25); }
  .store-btn .ic { font-size: 24px; }
  .store-btn .st { line-height: 1.2; }
  .store-btn .st small { display: block; font-size: 10px; opacity: .8; }
  .store-btn .st b { font-family: var(--font-display); font-size: 15px; font-weight: 500; }
  /* 公式ストアバッジ（画像は images/badge-*。README参照） */
  .store-badge { display: inline-block; transition: transform .15s; }
  .store-badge:hover { transform: translateY(-2px); }
  .store-badge img { height: 52px; width: auto; display: block; }
  .hero-note { margin-top: 16px; font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }

  /* ===== Phone mockup (CSS) ===== */
  .phone-stage { position: relative; display: flex; justify-content: center; }
  .phone { width: 300px; background: var(--milk); border-radius: 40px; box-shadow: 0 30px 70px rgba(74,61,64,.28); border: 8px solid #fff; overflow: hidden; position: relative; z-index: 2; }
  /* 実機スクリーンショット（端末フレームの中に等倍で収める） */
  .phone .shot { display: block; width: 100%; height: auto; border-radius: 32px; }
  /* 機能紹介の中に置く実機スクリーンショット（端末フレーム） */
  .feat-shot { width: 100%; max-width: 232px; background: #fff; border: 6px solid #fff; border-radius: 32px; box-shadow: 0 18px 44px rgba(74,61,64,.20); overflow: hidden; }
  .feat-shot img { display: block; width: 100%; height: auto; border-radius: 26px; }

  /* ===== Section shared ===== */
  section { padding: 88px 0; }
  .sec-head { text-align: center; max-width: 685px; margin: 0 auto 56px; }
  .sec-eyebrow { font-family: var(--font-num); font-weight: 600; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--blush-deep); }
  .sec-head h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; margin: 12px 0 14px; }
  .sec-head p { color: var(--ink-soft); font-size: 16px; }

  /* ===== Stages (signature: the vertical life-line) ===== */
  .stages { background: linear-gradient(180deg, var(--white), var(--milk)); }
  .stage-line { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; }
  /* 2行×2列＋行/列の間に循環矢印。フェーズごとに色分け（--pcd:濃色 / --pt:淡いティント） */
  .srow { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: stretch; }
  .srow-gap { position: relative; height: 46px; }
  .stage { padding: 22px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-card); transition: transform .18s ease, box-shadow .18s ease; }
  .stage:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
  .stage .sc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
  .stage .dot { width: 52px; height: 52px; border-radius: 15px; background: var(--pt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .stage .dot img { width: 30px; height: 30px; object-fit: contain; }
  .stage h3 { font-size: 18px; font-weight: 700; color: var(--pcd); }
  .stage p { color: var(--ink-soft); font-size: 14px; }
  .stage .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
  .stage .tags span { background: var(--pt); color: var(--pcd); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: var(--r-pill); }
  .stage.p-pre   { --pcd:#5E7F58; --pt:#EDF5EA; }
  .stage.p-preg  { --pcd:#C25A76; --pt:#FCE4EA; }
  .stage.p-child { --pcd:#B07E2E; --pt:#FBF0E0; }
  .stage.p-after { --pcd:#7E63AF; --pt:#F1EAFA; }
  /* 循環の三角矢印（各カードの間の中央に表示） */
  .cyc-arrow { display: flex; align-items: center; justify-content: center; color: #A6B8C2; }
  .cyc-arrow svg { width: 26px; height: 26px; display: block; }
  .dir-down svg { transform: rotate(90deg); }
  .dir-left svg { transform: rotate(180deg); }
  .dir-up svg { transform: rotate(270deg); }
  .srow-gap .ga-left  { position: absolute; left: 25%; top: 50%; transform: translate(-50%,-50%); }
  .srow-gap .ga-right { position: absolute; left: 75%; top: 50%; transform: translate(-50%,-50%); }
  @media (max-width: 640px) {
    .srow { grid-template-columns: 1fr; gap: 16px; }
    .stage-line { gap: 16px; }
    .srow .cyc-arrow, .srow-gap { display: none; }
    .stage.p-child { order: -1; }
  }

  /* ===== Features (alternating) ===== */
  .feat { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 96px; }
  .feat:last-child { margin-bottom: 0; }
  .feat.rev .feat-text { order: 2; }
  .feat-ico { width: 56px; height: 56px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 18px; }
  .feat-text h3 { font-size: 26px; font-weight: 700; margin-bottom: 12px; }
  .feat-text p { color: var(--ink-soft); font-size: 16px; margin-bottom: 18px; }
  .feat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .feat-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
  .feat-list li::before { content: "✓"; color: var(--sage-deep); font-weight: 700; margin-top: 1px; }
  /* 図版はスクリーンショットのみ（背景パネルなし） */
  .feat-visual { display: flex; align-items: center; justify-content: center; }
  /* ===== Partner ===== */
  .partner { background: linear-gradient(135deg, #FCE4EA, #F0E4FA); border-radius: var(--r-xl); padding: 64px 48px; text-align: center; position: relative; overflow: hidden; }
  .partner h2 { font-size: clamp(26px,3.5vw,36px); font-weight: 700; margin-bottom: 16px; }
  .partner p { color: var(--ink); font-size: 17px; max-width: 34em; margin: 0 auto 28px; }
  .partner .duo { display: inline-flex; align-items: center; gap: 16px; background: #fff; padding: 16px 28px; border-radius: var(--r-pill); box-shadow: var(--shadow-card); }
  .partner .duo .av { height: 70px; overflow: hidden; }
  .partner .duo .av img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .partner .duo .sync { font-family: var(--font-num); font-size: 20px; color: var(--blush-deep); }
  .partner .badge-free { display: inline-block; margin-top: 20px; background: var(--sage); color: #fff; font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: var(--r-pill); }

  /* ===== Pricing ===== */
  .plans { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
  .plan { background: #fff; border-radius: var(--r-xl); padding: 36px; box-shadow: var(--shadow-card); border: 2px solid transparent; position: relative; display: flex; flex-direction: column; }
  .plan.pro { border-color: var(--blush); }
  .plan .badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blush-deep); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: var(--r-pill); box-shadow: var(--shadow-pop); }
  .plan .pn { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--rose-ink); }
  .plan .pr { font-family: var(--font-num); font-weight: 700; font-size: 40px; color: var(--ink); margin: 12px 0 4px; }
  .plan .pr small { font-size: 15px; color: var(--ink-soft); font-weight: 500; }
  .plan .pd { font-size: 13px; color: var(--ink-soft); margin-bottom: 24px; }
  .plan ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
  .plan ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
  .plan ul li::before { content: "✓"; color: var(--sage-deep); font-weight: 700; }
  .plan ul li.off { color: var(--ink-soft); }
  .plan ul li.off::before { content: "—"; color: #CDBFC0; }
  .plan .pbtn { display: block; text-align: center; padding: 14px; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 500; font-size: 15px; margin-top: auto; }
  .plan .pbtn.ghost { background: var(--milk-deep); color: var(--rose-ink); }
  .plan .pbtn.solid { background: var(--blush-deep); color: #fff; box-shadow: var(--shadow-pop); }

  /* ===== Security ===== */
  .sec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
  .sec-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--shadow-card); text-align: left; transition: transform .18s ease, box-shadow .18s ease; }
  .sec-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
  .sec-card .si-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
  .sec-card .si { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; font-size: 30px; flex-shrink: 0; }
  .sec-card .si img { width: 42px; height: 42px; object-fit: contain; }
  .sec-card h3 { font-size: 16px; font-weight: 700; }
  .sec-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.8; }

  /* ===== FAQ ===== */
  .faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .faq-more { text-align: center; margin-top: 26px; }
  .faq-more a { display: inline-flex; align-items: center; gap: 4px; font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--blush-deep); border: 1px solid var(--blush); padding: 11px 26px; border-radius: var(--r-pill); transition: background .2s, color .2s, border-color .2s; }
  .faq-more a:hover { background: var(--blush-deep); color: #fff; border-color: var(--blush-deep); }
  .faq { background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-card); overflow: hidden; }
  .faq summary { padding: 20px 24px; font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--rose-ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after { content: "＋"; color: var(--blush-deep); font-size: 20px; transition: transform .2s; }
  .faq[open] summary::after { transform: rotate(45deg); }
  .faq p { padding: 0 24px 20px; color: var(--ink-soft); font-size: 15px; }

  /* ===== CTA ===== */
  .cta-final { background: linear-gradient(135deg, var(--blush-deep), #D97088); border-radius: var(--r-xl); padding: 64px 40px; text-align: center; color: #fff; }
  .cta-final h2 { color: #fff; font-size: clamp(26px,3.5vw,38px); font-weight: 700; margin-bottom: 14px; }
  .cta-final p { font-size: 17px; opacity: .95; margin-bottom: 30px; }
  .cta-final .store-row { justify-content: center; }
  .cta-final .store-btn { background: #fff; color: var(--ink); }

  /* ===== Footer ===== */
  footer { background: var(--white); border-top: 1px solid var(--line); padding: 56px 0 32px; margin-top: 88px; }
  .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
  .foot-brand .brand { margin-bottom: 14px; }
  .foot-brand p { font-size: 14px; color: var(--ink-soft); max-width: 24em; }
  .foot-col h4 { font-family: var(--font-display); font-size: 14px; color: var(--rose-ink); margin-bottom: 14px; }
  .foot-col a { display: block; font-size: 14px; color: var(--ink-soft); padding: 5px 0; transition: color .2s; }
  .foot-col a:hover { color: var(--blush-deep); }
  .foot-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--ink-soft); }

  /* ===== Screenshots ===== */
  .shots { display: flex; gap: 20px; overflow-x: auto; padding: 8px 4px 24px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .shots img { width: 240px; flex: 0 0 auto; border-radius: 28px; box-shadow: var(--shadow-soft); scroll-snap-align: center; background: var(--milk-deep); }

  /* ===== App icons（アプリの独自アイコン画像をLPでも使用） ===== */
  .feat-ico img { width: 34px; height: 34px; object-fit: contain; }

  /* ===== Feature title icon（背景なし・タイトルの前） ===== */
  .feat-text h3 .h3ic { display: inline-block; width: 32px; height: 32px; object-fit: contain; vertical-align: middle; margin: -4px 10px 0 0; }
  @media (max-width: 900px) { .feat-text h3 .h3ic { width: 28px; height: 28px; } }

  /* ===== News（お知らせ） ===== */
  .news { background: linear-gradient(180deg, var(--milk), #fff); padding: 56px 0; }
  .news-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
  .news-head h2 { font-size: 24px; font-weight: 700; }
  .news-head .more { font-size: 13px; color: var(--blush-deep); font-weight: 500; }
  .news-list { display: flex; flex-direction: column; gap: 10px; }
  .news-item { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--shadow-card); transition: transform .15s; }
  .news-item:hover { transform: translateX(3px); }
  .news-item .date { font-family: var(--font-num); font-size: 12px; color: var(--ink-soft); white-space: nowrap; }
  .news-item .tag { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: var(--r-pill); white-space: nowrap; }
  .news-item .tag.info { background: #E8EEF7; color: #5b7fa6; }
  .news-item .tag.new { background: #FCE4EA; color: var(--blush-deep); }
  .news-item .tag.camp { background: #EEF6EC; color: var(--sage-deep); }
  .news-item .nt { font-size: 14px; font-weight: 500; flex: 1; }
  @media (max-width: 640px) { .news-item { flex-wrap: wrap; gap: 8px; } .news-item .nt { flex-basis: 100%; } }

  /* ===== Reveal animation（JS有効時のみ。無効時は通常表示） ===== */
  .js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
  .js .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

  /* ===== Mobile menu（ハンバーガー） ===== */
  .mobile-menu { position: fixed; left: 0; right: 0; top: 68px; background: rgba(251,247,244,.98); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft); transform: translateY(-14px); opacity: 0; pointer-events: none; transition: transform .28s ease, opacity .28s ease; z-index: 45; }
  .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-menu a { display: block; padding: 15px 24px; font-size: 15px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
  .mobile-menu a.cta { color: var(--blush-deep); font-weight: 700; border-bottom: none; }
  .menu-btn { transition: transform .2s ease; }
  .menu-btn.open { transform: rotate(90deg); }

  /* ===== Hero 登場アニメ（phone→float の順、JS有効時のみ） ===== */
  @keyframes heroPhoneIn { from { opacity: 0; transform: translateY(48px); } to { opacity: 1; transform: translateY(0); } }
  .js .phone { animation: heroPhoneIn .85s cubic-bezier(.2,.7,.2,1) both; }
  @media (prefers-reduced-motion: reduce) {
    .js .phone { animation: none !important; opacity: 1 !important; transform: none !important; }
  }

  /* ===== モバイルのみ改行（PCでは無効） ===== */
  .sp-br { display: none; }
  @media (max-width: 640px) { .sp-br { display: inline; } }

  /* ===== モバイルでもストアバッジを横並び（折り返さない） ===== */
  @media (max-width: 640px) {
    .store-row { flex-wrap: nowrap; justify-content: center; gap: 10px; }
    .store-badge { flex: 0 1 auto; min-width: 0; }
    .store-badge img { height: 44px; }
  }
  @media (max-width: 360px) { .store-badge img { height: 38px; } }

  /* ===== Responsive ===== */
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
    .hero .lead { margin-left: auto; margin-right: auto; }
    .store-row, .hero-note { justify-content: center; }
    .eyebrow { margin: 0 auto; }
    .feat { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
    .feat.rev .feat-text { order: 0; }
    .feat-visual { padding: 8px 0; }
    .feat-ico { margin-left: auto; margin-right: auto; }
    .feat-text { text-align: center; }
    .feat-list { display: inline-flex; text-align: left; }
    .sec-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    section { padding: 64px 0; }
    .nav-links { display: none; }
    .menu-btn { display: block; }
    .plans { grid-template-columns: 1fr; }
    .partner { padding: 48px 24px; }
    .cta-final { padding: 48px 24px; }
    .foot-grid { grid-template-columns: 1fr; gap: 24px; }
    .foot-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .stage { padding: 20px; gap: 16px; }
    .stage .dot { width: 52px; height: 52px; font-size: 26px; }
    .sec-grid { gap: 14px; }
  }

  /* ===== ウェイティングリスト（先行登録フォーム） ===== */
  .soon-badge { display:inline-block; background:var(--honey); color:#7A5417; font-family:var(--font-display); font-weight:700; font-size:12px; letter-spacing:.5px; padding:5px 14px; border-radius:var(--r-pill); }
  .soon-lead { margin:12px 0 14px; font-size:15px; color:var(--ink); }
  .waitlist { max-width:560px; }
  .waitlist-final { margin:22px auto 0; }
  .wl-hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
  .wl-row { display:flex; gap:10px; flex-wrap:wrap; align-items:stretch; }
  .wl-email { flex:1 1 220px; min-width:0; font-family:var(--font-body); font-size:15px; padding:13px 16px; border:1px solid var(--line); border-radius:14px; background:#fff; color:var(--ink); }
  .wl-email:focus { outline:none; border-color:var(--blush-deep); box-shadow:0 0 0 3px rgba(233,137,157,.18); }
  .wl-platform { flex:0 0 auto; font-family:var(--font-body); font-size:14px; padding:13px 12px; border:1px solid var(--line); border-radius:14px; background:#fff; color:var(--ink); }
  .wl-btn { flex:0 0 auto; background:var(--rose-ink); color:#fff; font-family:var(--font-display); font-weight:700; font-size:15px; padding:13px 26px; border:0; border-radius:14px; cursor:pointer; box-shadow:var(--shadow-pop); transition:transform .15s, background .2s; }
  .wl-btn:hover { transform:translateY(-2px); background:#743C4A; }
  .wl-btn-link { display:inline-block; text-decoration:none; }
  .wl-note { margin-top:10px; font-size:12px; color:var(--ink-soft); }
  .wl-msg { margin:0 0 14px; padding:12px 16px; border-radius:14px; font-size:14px; }
  .wl-msg.wl-ok { background:#EDF5EA; color:var(--sage-deep); border:1px solid #CFE3C8; }
  .wl-msg.wl-ng { background:#FCE4EA; color:var(--rose-ink); border:1px solid #F3C6D0; }
  @media (max-width: 640px) {
    .wl-row { flex-direction:column; }
    .wl-btn, .wl-platform, .wl-email { width:100%; }
    .waitlist-final { text-align:left; }
  }
