:root {
  --bg: #050506;
  --surface: #0e0e10;
  --card: #131316;
  --border: #232326;
  --white: #ffffff;
  --grey: #98989f;
  --grey-dim: #6e6e75;
  --green: #56be4a;
  --green-deep: #2b6d26;
  --red: #d31021;
  --radius: 18px;
  --max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* subtle pitch-line motif */
.pitch-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.pitch-bg svg { width: 100%; height: 100%; }

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

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---------- nav ---------- */
header.site {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(5, 5, 6, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 10;
}
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav .brand:hover { text-decoration: none; }
.nav .brand img { width: 30px; height: 30px; border-radius: 7px; }
.nav .links {
  margin-left: auto;
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav .links a {
  color: var(--grey);
  font-size: 15px;
  font-weight: 600;
}
.nav .links a:hover { color: var(--white); text-decoration: none; }
.nav .links a.cta {
  color: #04120a;
  background: var(--green);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
}
.nav .links a.cta:hover { filter: brightness(1.08); }

/* ---------- hero ---------- */
.hero {
  text-align: center;
  padding: 84px 24px 40px;
  max-width: 880px;
  margin: 0 auto;
}
.hero img.appicon {
  width: 108px;
  height: 108px;
  border-radius: 24px;
  box-shadow: 0 12px 44px rgba(86, 190, 74, 0.18), 0 2px 0 rgba(255,255,255,0.04) inset;
  margin-bottom: 30px;
}
h1 {
  font-size: clamp(40px, 6.4vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 .g { color: var(--green); }
.hero .sub {
  color: var(--grey);
  font-size: clamp(18px, 2.4vw, 21px);
  max-width: 640px;
  margin: 22px auto 0;
}
.hero .actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: #000;
  border-radius: 12px;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  text-align: left;
}
.badge-soon:hover { text-decoration: none; filter: brightness(0.95); }
.badge-soon .apple { font-size: 26px; line-height: 1; }
.badge-soon small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.02em;
}
.btn-ghost {
  color: var(--white);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
}
.btn-ghost:hover { text-decoration: none; border-color: var(--grey-dim); }
.hero .pricenote {
  margin-top: 18px;
  color: var(--grey-dim);
  font-size: 14px;
  font-weight: 600;
}
.hero .pricenote strong { color: var(--grey); }

/* ---------- screenshots strip ---------- */
.shots {
  padding: 44px 0 10px;
}
.shots .rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 24px 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.shots .rail::-webkit-scrollbar { height: 8px; }
.shots .rail::-webkit-scrollbar-thumb { background: #202024; border-radius: 4px; }
.shots img {
  width: 300px;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  scroll-snap-align: center;
  flex-shrink: 0;
}
.shots .hint {
  text-align: center;
  color: var(--grey-dim);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- sections ---------- */
section.block { padding: 70px 0; }
.kicker {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.lede { color: var(--grey); margin-top: 14px; max-width: 640px; }

.grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.card .ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(86, 190, 74, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.card p { color: var(--grey); font-size: 15px; }

/* privacy band */
.band {
  background: linear-gradient(180deg, rgba(86,190,74,0.08), rgba(86,190,74,0.02));
  border-top: 1px solid rgba(86,190,74,0.16);
  border-bottom: 1px solid rgba(86,190,74,0.16);
  text-align: center;
  padding: 64px 24px;
}
.band h2 { max-width: 720px; margin: 0 auto; }
.band p { color: var(--grey); max-width: 620px; margin: 16px auto 0; }
.band .more { display: inline-block; margin-top: 22px; font-weight: 700; }

/* ---------- inner pages ---------- */
.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 24px 40px;
}
.page h1 { font-size: clamp(34px, 5vw, 48px); }
.page .intro { color: var(--grey); margin-top: 16px; font-size: 18px; }
.page h2 { font-size: 24px; margin-top: 48px; }
.page h3 { font-size: 18px; font-weight: 800; margin-top: 28px; }
.page p, .page li { color: var(--grey); }
.page p { margin-top: 14px; }
.page ul { margin: 14px 0 0 22px; }
.page li { margin-top: 8px; }
.page .updated {
  color: var(--grey-dim);
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}
.contact-card {
  margin-top: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.contact-card .ic {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(86,190,74,0.12);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  flex-shrink: 0;
}
.contact-card div p { margin: 2px 0 0; font-size: 15px; }
.contact-card a.mail { font-weight: 700; font-size: 17px; }

/* FAQ */
details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-top: 12px;
  overflow: hidden;
}
details summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  color: var(--green);
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}
details[open] summary::after { content: '\2013'; }
details .a { padding: 0 20px 18px; color: var(--grey); font-size: 15px; }
details .a p { margin-top: 10px; }
details .a p:first-child { margin-top: 0; }

/* form */
form.feedback {
  margin-top: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.field { margin-top: 18px; }
.field:first-child { margin-top: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.two-col .field { display: flex; flex-direction: column; justify-content: flex-end; margin-top: 0; }
@media (max-width: 560px) { .two-col { grid-template-columns: 1fr; } }
label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
label .opt { color: var(--grey-dim); font-weight: 600; text-transform: none; letter-spacing: 0; }
input[type='text'], input[type='email'], select, textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--white);
  padding: 13px 14px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); }
textarea { min-height: 140px; resize: vertical; }
select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2398989f' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
button.submit {
  margin-top: 24px;
  width: 100%;
  background: var(--green);
  color: #04120a;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 17px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
}
button.submit:hover { filter: brightness(1.08); }
button.submit:disabled { opacity: 0.55; cursor: default; }
.form-note { margin-top: 14px; color: var(--grey-dim); font-size: 13px; }
.form-result { margin-top: 18px; padding: 14px 16px; border-radius: 12px; font-size: 15px; font-weight: 600; display: none; }
.form-result.ok { display: block; background: rgba(86,190,74,0.12); border: 1px solid rgba(86,190,74,0.35); color: #a9e8a1; }
.form-result.err { display: block; background: rgba(211,16,33,0.10); border: 1px solid rgba(211,16,33,0.35); color: #f2a3ab; }

/* ---------- footer ---------- */
footer.site {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 70px;
  padding: 44px 24px 54px;
}
.foot {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.foot .brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.foot .brand img { width: 26px; height: 26px; border-radius: 6px; }
.foot .flinks { margin-left: auto; display: flex; gap: 22px; flex-wrap: wrap; }
.foot .flinks a { color: var(--grey); font-size: 14px; font-weight: 600; }
.foot .flinks a:hover { color: var(--white); }
.foot .legal { width: 100%; color: var(--grey-dim); font-size: 13px; margin-top: 6px; }
