@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@700;800&display=swap');

:root {
  --bg: #f5f8f5;
  --surface: #ffffff;
  --surface-soft: #eef7ef;
  --brand: #0d8b73;
  --brand-deep: #0b6f5c;
  --brand-soft: #d3f1dd;
  --accent: #daf0c7;
  --text: #18222b;
  --muted: #5d6b69;
  --line: #dbe5dc;
  --shadow: 0 18px 40px rgba(11, 46, 37, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(205, 240, 217, 0.75), transparent 28%),
    linear-gradient(180deg, #f8fbf8 0%, var(--bg) 38%, #ffffff 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

h1, h2, h3, h4 { margin: 0 0 14px; font-family: 'Manrope', 'Inter', sans-serif; line-height: 1.08; }
h1 { font-size: clamp(44px, 7vw, 76px); letter-spacing: -0.04em; }
h2 { font-size: clamp(30px, 4vw, 52px); letter-spacing: -0.03em; }
h3 { font-size: 22px; }
p { margin: 0; line-height: 1.7; color: var(--muted); }
section { padding: 92px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
}
.eyebrow-light { color: #bee5d0; }
.eyebrow-light::before { background: #bee5d0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  backdrop-filter: blur(16px);
  background: rgba(248, 251, 248, 0.84);
  border-bottom: 1px solid rgba(219, 229, 220, 0.7);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: var(--shadow);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 19px; }
.brand-copy small { color: var(--muted); font-size: 12px; }

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  text-decoration: none;
  color: #30403e;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:hover { color: var(--brand); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #12a184 0%, var(--brand) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(13, 139, 115, 0.28);
}
.btn-secondary {
  background: rgba(255,255,255,.72);
  color: var(--text);
  border-color: var(--line);
}
.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--text);
}

.hero { padding-top: 54px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
}
.hero-copy p {
  max-width: 640px;
  font-size: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: #29403c;
  font-size: 14px;
  font-weight: 600;
}
.proof-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 12px;
}
.card-soft {
  margin-top: 28px;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow);
}
.card-soft strong { display: block; margin-bottom: 8px; }
.card-soft p { font-size: 14px; }

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 720px;
}
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
}
.orb-one {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(13,139,115,.18), rgba(13,139,115,0));
  top: 60px;
  left: 10px;
}
.orb-two {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(179, 229, 196, .65), rgba(179, 229, 196, 0));
  bottom: 10px;
  right: 20px;
}
.phone-card {
  position: relative;
  width: min(430px, 100%);
  padding: 16px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(240,248,242,.98));
  border: 1px solid rgba(198, 216, 203, 0.8);
  box-shadow: 0 28px 64px rgba(17, 55, 44, 0.18);
}
.phone-shot {
  width: 100%;
  border-radius: 34px;
}
.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(219, 229, 220, .9);
  color: #1d423c;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.chip-a { top: 118px; left: 5px; }
.chip-b { right: 0; bottom: 120px; }

.trust-strip {
  padding: 22px 0 0;
}
.trust-row {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #153728 0%, #10281d 100%);
  color: white;
}
.trust-intro h2 { font-size: clamp(28px, 4vw, 40px); }
.trust-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-self: center;
}
.trust-point {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.trust-point b { display: block; margin-bottom: 10px; }
.trust-point span { color: #c3d1ca; font-size: 14px; line-height: 1.6; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 40px;
}
.section-head > div:first-child { max-width: 760px; }
.section-copy { max-width: 460px; font-size: 16px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  padding: 28px;
  min-height: 250px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.feature-card p { font-size: 15px; }
.feature-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 16px;
  font-weight: 800;
}
.feature-card.highlight {
  background: linear-gradient(180deg, #0f9078 0%, #0b6e5c 100%);
  border-color: transparent;
  color: white;
}
.feature-card.highlight p { color: rgba(255,255,255,.8); }
.feature-card.highlight .feature-icon { background: rgba(255,255,255,.16); color: white; }

.screens {
  background: linear-gradient(180deg, #10251d 0%, #091511 100%);
  color: white;
}
.screens .section-copy { color: #b5c4bd; }
.screens-grid {
  display: grid;
  gap: 28px;
}
.screen-feature {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 28px;
  align-items: center;
}
.screen-image-card {
  padding: 16px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 26px 50px rgba(0,0,0,.25);
}
.screen-real {
  width: 100%;
  border-radius: 26px;
}
.screen-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(174, 226, 198, .12);
  color: #b3e4ca;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.screen-detail p { color: #c4d0ca; }
.screen-detail ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #d9e5df;
  line-height: 1.8;
}
.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.screen-shot {
  padding: 10px;
  border-radius: 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.mini-phone {
  min-height: 410px;
  padding: 18px;
  border-radius: 22px;
  background: #f7fbf7;
  color: #203029;
}
.mini-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 800;
}
.mini-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: #d8f0d0;
  color: #1e654c;
  font-size: 11px;
}
.mini-pill.light { background: #edf4f0; color: #50635e; }
.mini-pill.success { background: #d6f1dd; color: #1a7a54; }
.mini-block {
  padding: 14px;
  margin-bottom: 11px;
  border-radius: 14px;
  background: white;
  border: 1px solid #e0eae2;
}
.mini-block b,
.history-item b { display: block; margin-bottom: 5px; font-size: 13px; }
.mini-block span,
.history-item span { color: #697773; font-size: 12px; }
.mini-block.off { opacity: .66; }
.form-line {
  height: 42px;
  margin: 10px 0;
  border-radius: 12px;
  border: 1px solid #d9e5dc;
  background: white;
}
.form-line.tall { height: 88px; }
.history-item {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #e3ebe4;
}
.history-item:last-child { border-bottom: 0; }
.history-item i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
  margin-top: 6px;
}
.history-item i.warn { background: #daa634; }
.history-item i.danger { background: #c85a5a; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.step h3 { margin-bottom: 14px; }
.step p { font-size: 15px; }

.privacy-section { padding-top: 30px; }
.privacy-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 46px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #eff8f0 0%, #ffffff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.privacy-visual {
  display: grid;
  place-items: center;
  min-height: 340px;
  border-radius: 28px;
  background: linear-gradient(180deg, #0e8c74 0%, #0b6e5c 100%);
  position: relative;
  overflow: hidden;
}
.privacy-visual::before,
.privacy-visual::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
}
.privacy-visual::before { width: 260px; height: 260px; }
.privacy-visual::after { width: 390px; height: 390px; }
.privacy-visual img {
  position: relative;
  z-index: 1;
  width: 138px;
  height: 138px;
  border-radius: 32px;
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}
.privacy-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}
.privacy-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
}
.privacy-item i {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: white;
  color: var(--brand);
  border: 1px solid var(--line);
  font-style: normal;
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--line);
  max-width: 920px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.faq-q span:last-child {
  font-size: 28px;
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height .25s ease, padding .25s ease;
}
.faq-item.open .faq-a { max-height: 220px; padding: 0 0 24px; }
.faq-item.open .faq-q span:last-child { transform: rotate(45deg); }

.download-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 54px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #163b2b 0%, #0f2c20 100%);
  color: white;
  box-shadow: 0 24px 48px rgba(5, 27, 19, .16);
}
.download-card p { color: #c2d2ca; max-width: 620px; font-size: 17px; }
.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  padding: 12px 18px;
  border-radius: 16px;
  background: #0a0d0c;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.22);
}
.play-triangle {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #ffffff;
}
.play-badge small {
  display: block;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .08em;
}
.play-badge strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  line-height: 1;
}

.site-footer { padding: 58px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 32px;
}
.footer-brand p { max-width: 340px; margin-top: 16px; font-size: 14px; }
.footer-col strong {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-col a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
}
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #7d8a85;
  font-size: 12px;
}

.legal-page { min-height: 100vh; }
.legal-hero { padding: 76px 0 34px; }
.legal-hero h1 { max-width: 900px; }
.legal-meta { font-size: 14px; }
.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 54px;
  padding: 20px 0 90px;
}
.legal-toc {
  position: sticky;
  top: 100px;
  align-self: start;
}
.legal-toc a {
  display: block;
  padding: 7px 0;
  font-size: 13px;
  text-decoration: none;
  color: var(--muted);
}
.legal-content {
  padding: 34px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}
.legal-content h2 { margin-top: 38px; font-size: 25px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 15px; }
.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--brand); }
.notice {
  padding: 18px;
  margin: 18px 0;
  border-radius: 14px;
  background: var(--surface-soft);
  color: #315646;
  font-weight: 600;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.support-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .hero-grid,
  .screen-feature,
  .privacy-panel,
  .trust-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-points,
  .screen-gallery,
  .feature-grid,
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .section-head { align-items: start; flex-direction: column; }
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 8px; }
  .nav-cta { display: none; }
  .menu-btn { display: inline-grid; place-items: center; }
  .hero { padding-top: 24px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .screen-gallery,
  .feature-grid,
  .how-grid,
  .support-grid { grid-template-columns: 1fr; }
  .download-card { grid-template-columns: 1fr; padding: 36px 28px; }
  .footer-bottom { flex-direction: column; }
  .legal-layout { padding-bottom: 60px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1160px); }
  section { padding: 74px 0; }
  .brand-copy small { display: none; }
  .brand-mark { width: 50px; height: 50px; border-radius: 16px; }
  .card-soft { grid-template-columns: 1fr; }
  .chip-a { top: 10px; left: 10px; }
  .chip-b { right: 10px; bottom: 10px; }
  .trust-row,
  .privacy-panel,
  .download-card,
  .screen-image-card,
  .feature-card,
  .step { padding-left: 22px; padding-right: 22px; }
  .phone-card { padding: 10px; border-radius: 28px; }
  .phone-shot { border-radius: 24px; }
  .mini-phone { min-height: auto; }
  .faq-q { font-size: 17px; }
}
