:root {
  --accent: #c8e263;
  --accent-2: #e8d34a;
  --record: #ff4d4d;
  --bg: #0b0b0c;
  --surface: #17171a;
  --surface-2: #22222a;
  --ink: #f2efe6;
  --ink2: #a6a29a;
  --ink3: #65625c;
  --rule: rgba(255,255,255,.1);
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Apple SD Gothic Neo", "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- recording-session section marker ---------- */
.sec-head {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
}
.sec-head .stamp { display: inline-flex; align-items: center; gap: 8px; color: var(--record); }
.sec-head .stamp .rdot { width: 7px; height: 7px; border-radius: 50%; background: var(--record); animation: pulse 1.4s ease-in-out infinite; }
.sec-head .label { color: var(--accent); }
.sec-head .line { flex: 1; height: 1px; background: rgba(242,239,230,.15); }
@keyframes pulse { 50% { opacity: .3; } }

/* ---------- nav ---------- */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,11,12,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 12px; }
.wordmark { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: none; }
.wordmark img { width: 28px; height: 28px; border-radius: 7px; }
.wordmark span { font-family: var(--mono); font-size: 13px; font-weight: 800; letter-spacing: .28em; }
.lang { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; justify-content: flex-end; }
.lang a { font-size: 12px; font-weight: 700; text-decoration: none; padding: 4px 7px; border-radius: 7px; color: var(--ink2); }
.lang a:hover { color: var(--ink); }
.lang a.cur { color: var(--accent); pointer-events: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1100px 560px at 82% -12%, rgba(200,226,99,.12), transparent 60%), var(--bg);
}
.hero .wrap {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.12fr .88fr; gap: 48px; align-items: center;
  padding-top: 68px; padding-bottom: 0;
}
.rec-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink2); border: 1px solid rgba(255,255,255,.16); border-radius: 99px; padding: 7px 16px;
}
.rec-pill .rdot { width: 8px; height: 8px; border-radius: 50%; background: var(--record); animation: pulse 1.4s ease-in-out infinite; }
.rec-pill .rec { color: var(--record); }
.rec-pill em { font-style: normal; color: var(--accent); }
.hero h1 {
  margin: 24px 0 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.14;
  font-weight: 900; letter-spacing: -0.015em; word-break: keep-all;
}
.hero h1 em { font-style: normal; border-bottom: 6px solid rgba(200,226,99,.55); }

/* hero demo — a Talk Memo row writing itself */
.demo-card {
  margin-top: 30px; max-width: 460px;
  background: var(--surface); border: 1px solid rgba(255,255,255,.09); border-radius: 18px;
  padding: 16px 20px 14px; box-shadow: 0 24px 50px rgba(0,0,0,.5);
}
.demo-card .dhead { display: flex; align-items: center; gap: 10px; }
.demo-card .dtime { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--accent); }
.demo-card .ctx {
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .16em;
  color: var(--ink2); border: 1px solid rgba(255,255,255,.14); border-radius: 99px; padding: 2px 10px;
}
.demo-card .dtext { margin-top: 10px; font-size: 17px; font-weight: 600; line-height: 1.5; min-height: 3em; word-break: keep-all; }
.demo-card .dtext span::after {
  content: ""; display: inline-block; width: 2px; height: 1em; background: var(--accent);
  margin-left: 2px; vertical-align: -0.12em; animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.demo-card .dfoot { display: flex; align-items: center; gap: 10px; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.07); }
.demo-card .dfoot .rdot { width: 8px; height: 8px; border-radius: 50%; background: var(--record); animation: pulse 1.2s ease-in-out infinite; }
.bars { display: inline-flex; align-items: center; gap: 3px; height: 18px; }
.bars i { width: 3px; border-radius: 2px; background: var(--accent); animation: bar .9s ease-in-out infinite; }
.bars i:nth-child(1) { height: 7px;  animation-delay: 0s; }
.bars i:nth-child(2) { height: 14px; animation-delay: .15s; }
.bars i:nth-child(3) { height: 18px; animation-delay: .3s; }
.bars i:nth-child(4) { height: 12px; animation-delay: .45s; }
.bars i:nth-child(5) { height: 8px;  animation-delay: .6s; }
@keyframes bar { 0%,100% { transform: scaleY(.45); } 50% { transform: scaleY(1); } }
.demo-card .dfoot .dstamp { margin-left: auto; font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .22em; color: var(--ink3); }

.hero .sub { margin-top: 26px; max-width: 34em; font-size: 17px; color: var(--ink2); word-break: keep-all; }
.cta { margin: 30px 0 56px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px; text-decoration: none;
  background: #000; color: #fff; border-radius: 14px; padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.28); transition: transform .15s ease;
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge svg { width: 26px; height: 26px; fill: #fff; }
.store-badge .txt { line-height: 1.15; text-align: left; }
.store-badge .txt small { display: block; font-size: 11px; opacity: .8; }
.store-badge .txt strong { font-size: 17px; font-weight: 700; letter-spacing: .01em; }
.cta .note { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: var(--ink2); }

.hero .phone-col { position: relative; align-self: end; }
.phone {
  position: relative; width: min(300px, 74vw); margin: 0 auto;
  border-radius: 46px; padding: 11px; background: #1c1c20;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 60px rgba(200,226,99,.07), inset 0 0 0 2px rgba(255,255,255,.1);
}
.phone img { border-radius: 36px; }
.phone .island { position: absolute; top: 21px; left: 50%; transform: translateX(-50%); width: 86px; height: 26px; border-radius: 14px; background: #030303; }
.hero .phone { margin-bottom: -64px; }

.watch {
  position: relative; width: 190px;
  border-radius: 52px; padding: 9px; background: #101010;
  box-shadow: 0 30px 60px rgba(0,0,0,.6), inset 0 0 0 2px rgba(255,255,255,.12);
}
.watch img { border-radius: 44px; }
.watch::before { content: ""; position: absolute; right: -7px; top: 27%; width: 7px; height: 34px; border-radius: 0 4px 4px 0; background: #2c2c30; }
.watch::after  { content: ""; position: absolute; right: -5px; top: 50%; width: 5px; height: 44px; border-radius: 0 3px 3px 0; background: #202024; }
.hero .watch { position: absolute; z-index: 3; left: -16%; bottom: 4%; transform: rotate(-8deg); }

/* floating chips — app list color-point style */
.chip {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 9px;
  background: var(--surface); color: var(--ink); font-weight: 700; font-size: 13px; white-space: nowrap;
  border: 1px solid rgba(255,255,255,.14); border-radius: 99px; padding: 8px 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,.5);
  font-family: var(--mono);
}
.chip .pt { width: 9px; height: 9px; border-radius: 50%; background: #fff; flex: none; }
.chip.c2 .pt { background: #d97f33; }
.chip.c3 .pt { background: #8b5cf6; }
.chip.c4 .pt { background: var(--accent); }
.chip.c1 { right: -10%; top: 20%; transform: rotate(5deg); }
.chip.c2 { left: -6%;  top: 34%; transform: rotate(-6deg); }
.chip.c3 { right: -7%; top: 48%; transform: rotate(4deg); }
.chip.c4 { right: -2%; top: 74%; transform: rotate(-5deg); }

/* ---------- waveform divider ---------- */
.wave-strip {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  height: 64px; overflow: hidden; padding: 0 12px;
  background: #0e0e0f; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.wave-strip i {
  flex: none; width: 3px; border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  animation: bar 1.1s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .wave-strip i, .bars i, .rdot, .demo-card .dtext span::after, .record-btn::after { animation: none !important; }
}

/* ---------- sections ---------- */
section { padding: 88px 0; }
section h2 { font-size: clamp(26px, 3.5vw, 39px); font-weight: 900; letter-spacing: -0.015em; margin: 22px 0 14px; word-break: keep-all; }
section h2 em { font-style: normal; color: var(--accent); }
section .lede { color: var(--ink2); max-width: 40em; font-size: 17px; word-break: keep-all; }

/* ---------- pipeline: tap → talk → text ---------- */
.pipeline { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 20px; margin-top: 52px; align-items: start; }
.stage { text-align: left; }
.stage .stamp-sm {
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .18em; color: var(--record);
  display: inline-flex; align-items: center; gap: 7px;
}
.stage .stamp-sm::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--record); }
.stage .viz {
  height: 160px; margin: 14px 0 18px; display: grid; place-items: center;
  background: var(--surface); border: 1px solid rgba(255,255,255,.08); border-radius: 18px;
}
.stage h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.stage p { color: var(--ink2); font-size: 15px; word-break: keep-all; }
.flow { align-self: center; font-family: var(--mono); font-size: 20px; font-weight: 900; color: var(--accent); padding-top: 20px; }

.mini-watch {
  width: 104px; height: 124px; border-radius: 30px; background: #0d0d0e;
  border: 2px solid rgba(255,255,255,.14); display: grid; place-items: center; position: relative;
}
.mini-watch::before { content: ""; position: absolute; right: -6px; top: 26%; width: 5px; height: 22px; border-radius: 0 3px 3px 0; background: #2c2c30; }
.mini-watch .rbtn { width: 54px; height: 54px; border-radius: 50%; background: var(--record); display: grid; place-items: center; }
.mini-watch .rbtn::after { content: ""; width: 20px; height: 20px; border-radius: 50%; background: #fff; }

.talk-wave { display: flex; align-items: center; gap: 5px; height: 70px; }
.talk-wave i { width: 4px; border-radius: 2px; background: var(--accent); animation: bar 1s ease-in-out infinite; }

.text-mini { width: 170px; background: var(--surface-2); border-radius: 14px; padding: 14px 16px; }
.text-mini .tm-time { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--accent); display: block; margin-bottom: 9px; }
.text-mini .tm-line { display: block; height: 7px; border-radius: 4px; background: rgba(242,239,230,.22); margin-top: 7px; }
.text-mini .tm-line.w1 { width: 92%; }
.text-mini .tm-line.w2 { width: 70%; }
.text-mini .tm-line.w3 { width: 46%; }

/* ---------- memo list (the app's home, rebuilt in CSS) ---------- */
.applist {
  margin-top: 48px; max-width: 660px;
  background: var(--surface); border: 1px solid rgba(255,255,255,.09); border-radius: 18px;
  padding: 6px 0 10px; box-shadow: 0 24px 50px rgba(0,0,0,.35);
}
.applist .day { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--ink3); padding: 16px 22px 8px; text-transform: uppercase; }
.mrow { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; padding: 14px 22px; border-top: 1px solid rgba(255,255,255,.06); align-items: baseline; }
.mrow .time { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--accent); }
.mrow .txt { font-size: 15px; font-weight: 600; word-break: keep-all; }
.mrow .exp {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 7px;
  font-size: 11px; font-weight: 700; color: var(--ink2);
  background: var(--surface-2); border-radius: 99px; padding: 2px 10px;
}
.mrow .exp::before { content: "✓"; color: var(--accent); }
.mrow .tag { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .18em; color: var(--ink3); text-transform: uppercase; white-space: nowrap; }

/* ---------- export sheet (the app's picker, rebuilt in CSS) ---------- */
.sheet {
  margin-top: 48px; max-width: 620px;
  background: var(--surface); border: 1px solid rgba(255,255,255,.09); border-radius: 22px;
  padding: 8px 0 8px; box-shadow: 0 24px 50px rgba(0,0,0,.35);
}
.sheet .grab { width: 36px; height: 5px; border-radius: 3px; background: rgba(255,255,255,.18); margin: 10px auto 4px; }
.sheet .sheet-title { font-size: 15px; font-weight: 800; padding: 8px 22px 12px; }
.srow { display: flex; align-items: center; gap: 14px; padding: 15px 22px; border-top: 1px solid rgba(255,255,255,.06); }
.srow .sicon {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; flex: none;
  background: #f2efe6; color: #1a1815; font-size: 16px; font-weight: 900;
}
.srow.s2 .sicon { background: #d97f33; color: #fff; }
.srow.s3 .sicon { background: #8b5cf6; color: #fff; }
.srow.s4 .sicon { background: var(--accent); color: #1a1815; }
.srow .body h3 { font-size: 15px; font-weight: 800; }
.srow .body p { font-size: 13px; color: var(--ink2); word-break: keep-all; }
.srow .chev { margin-left: auto; font-family: var(--mono); color: var(--ink3); font-weight: 900; }

/* ---------- shots ---------- */
.shots { background: linear-gradient(180deg, var(--bg), #141416); }
.shots .row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 52px; align-items: start; }
.shots .phone { width: 100%; }
.shots .watch { margin: 46px auto 0; }
.shots figcaption { text-align: center; margin-top: 16px; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .22em; color: var(--ink2); }
.shots figure:nth-child(2) { transform: translateY(34px); }

/* ---------- details as app settings ---------- */
.set-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.set-card { background: var(--surface); border: 1px solid rgba(255,255,255,.09); border-radius: 18px; padding: 6px 0 10px; }
.set-card .set-title { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--ink3); padding: 16px 22px 6px; text-transform: uppercase; }
.frow { display: flex; gap: 14px; padding: 14px 22px; border-top: 1px solid rgba(255,255,255,.06); align-items: flex-start; }
.frow .check {
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; flex: none; margin-top: 2px;
  background: rgba(200,226,99,.14); color: var(--accent); font-size: 13px; font-weight: 900;
}
.frow h3 { font-size: 15px; font-weight: 800; }
.frow p { font-size: 13px; color: var(--ink2); word-break: keep-all; }

/* ---------- final: the record button ---------- */
.final {
  text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(700px 420px at 50% 0%, rgba(255,77,77,.13), transparent 65%), var(--bg);
  border-top: 1px solid var(--rule);
}
.record-btn {
  display: grid; place-items: center; width: 112px; height: 112px; margin: 0 auto;
  border-radius: 50%; background: var(--record); position: relative; text-decoration: none;
  transition: transform .15s ease;
}
.record-btn:hover { transform: scale(1.06); }
.record-btn span { width: 40px; height: 40px; border-radius: 50%; background: #fff; }
.record-btn::after {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 2px solid rgba(255,77,77,.5); animation: ring 1.8s ease-out infinite;
}
@keyframes ring { 0% { transform: scale(.82); opacity: 1; } 100% { transform: scale(1.18); opacity: 0; } }
.final .cap { margin-top: 18px; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .3em; color: var(--ink2); text-transform: uppercase; }
.final h2 { margin-top: 18px; }
.final .lede { margin: 0 auto; }
.final .cta { justify-content: center; margin-bottom: 0; }

footer { background: #060607; color: #8e8a82; padding: 44px 0; font-size: 14px; border-top: 1px solid var(--rule); }
footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
footer .brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
footer .brand img { width: 24px; height: 24px; border-radius: 6px; }
footer .links { display: flex; gap: 22px; flex-wrap: wrap; }
footer a { color: #8e8a82; text-decoration: none; }
footer a:hover { color: var(--ink); }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 12px; padding-top: 52px; }
  .hero .phone { margin-bottom: -48px; margin-top: 26px; }
  .hero .watch { left: 0; width: 150px; }
  .chip.c2 { left: 0; }
  .chip.c1 { right: 0; } .chip.c3 { right: 1%; } .chip.c4 { right: 0; }
  .pipeline { grid-template-columns: 1fr; gap: 12px; }
  .flow { transform: rotate(90deg); padding: 0; justify-self: start; margin-left: 44px; }
  .set-grid, .shots .row { grid-template-columns: 1fr; }
  .shots figure:nth-child(2) { transform: none; }
  .mrow .tag { display: none; }
  section { padding: 64px 0; }
  .wordmark span { display: none; }
}
