*, *::before, *::after { box-sizing: border-box; }
:root {
  --ink: #102033;
  --muted: #5b6b7a;
  --paper: #f5f8fa;
  --surface: #ffffff;
  --line: #d9e2e8;
  --navy: #0d1725;
  --navy-soft: #172638;
  --brand: #1d9a83;
  --brand-dark: #11715f;
  --warm: #e1874e;
  --success: #198754;
  --radius: 8px;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 40px)); margin: 0 auto; }
.site-nav {
  background: var(--navy);
  color: #dbe7ef;
  border-bottom: 1px solid #26394c;
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-nav .container { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { color: #fff; font-size: 1.22rem; font-weight: 800; letter-spacing: .01em; }
.logo span { color: #6ed0b8; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: .9rem; }
.nav-links a { color: #b8c9d5; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-cta { background: var(--brand); color: #fff !important; padding: 9px 16px; border-radius: 6px; font-weight: 700; }
.nav-cta:hover { background: #2bb297; text-decoration: none !important; }
.hero { background: var(--navy); color: #fff; padding: 72px 0 66px; }
.hero-copy { max-width: 760px; margin: 0 auto; text-align: center; }
.eyebrow, .section-label { color: var(--brand-dark); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero .eyebrow { color: #78d5bd; }
.hero h1 { font-size: clamp(2.35rem, 5vw, 4.1rem); line-height: 1.08; margin: 14px 0 20px; letter-spacing: -.02em; }
.hero p { color: #c1d1db; max-width: 680px; margin: 0 auto 30px; font-size: 1.12rem; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 10px 20px; border: 1px solid transparent; border-radius: 6px; font-weight: 750; cursor: pointer; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: #2bb297; }
.btn-secondary { background: transparent; color: var(--ink); border-color: #9db0bc; }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand-dark); }
.hero .btn-secondary { color: #f3f8fa; border-color: #5a7182; }
.hero .btn-secondary:hover { border-color: #86dcc7; color: #fff; }
.hero-art { margin: 42px auto 0; max-width: 980px; }
.hero-art img { display: block; width: 100%; height: auto; border: 1px solid #334b5e; border-radius: 8px; }
.trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 24px; margin-top: 26px; color: #b8c9d5; font-size: .86rem; }
.trust-row span::before { content: "✓"; color: #6ed0b8; margin-right: 7px; font-weight: 800; }
.section { padding: 84px 0; }
.section-head { max-width: 680px; margin: 0 auto 42px; text-align: center; }
.section-head .section-label { margin-bottom: 10px; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.55rem); line-height: 1.15; margin: 0 0 14px; letter-spacing: -.015em; }
.section-sub { color: var(--muted); margin: 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feature-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.feature-card:hover { border-color: #8ac9bb; }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 7px; background: #e3f3ef; color: var(--brand-dark); margin-bottom: 16px; }
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.03rem; margin: 0 0 7px; }
.feature-card p { color: var(--muted); font-size: .9rem; margin: 0; }
.band { background: #eaf1f3; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.workflow { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; counter-reset: step; }
.workflow-step { position: relative; padding: 24px 24px 24px 70px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.workflow-step::before { counter-increment: step; content: counter(step); position: absolute; left: 22px; top: 23px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--warm); color: #fff; font-weight: 800; }
.workflow-step h3 { margin: 0 0 6px; font-size: 1rem; }
.workflow-step p { margin: 0; color: var(--muted); font-size: .9rem; }
.screenshots-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.shot { margin: 0; }
.shot img { display: block; width: 100%; height: auto; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
.shot figcaption { margin-top: 9px; color: var(--muted); font-size: .82rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.plan.popular { border: 2px solid var(--brand); padding: 27px; }
.plan-badge { align-self: flex-start; background: #dff3ed; color: var(--brand-dark); border-radius: 4px; padding: 4px 8px; font-size: .7rem; font-weight: 800; letter-spacing: .08em; margin-bottom: 14px; }
.plan h3 { margin: 0 0 7px; font-size: 1.08rem; }
.price { font-size: 2rem; font-weight: 850; line-height: 1.1; }
.price span { color: var(--muted); font-size: .85rem; font-weight: 500; }
.plan .desc { min-height: 44px; color: var(--muted); font-size: .86rem; margin: 10px 0 18px; }
.plan ul { list-style: none; display: grid; gap: 9px; margin: 0 0 24px; padding: 0; }
.plan li { display: flex; align-items: flex-start; gap: 9px; font-size: .87rem; }
.plan li::before { content: "✓"; color: var(--success); font-weight: 850; }
.plan .btn { margin-top: auto; width: 100%; }
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 8px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 20px; border: 0; background: transparent; color: var(--ink); text-align: left; font: inherit; font-weight: 750; cursor: pointer; }
.faq-q:hover { background: #f0f6f5; }
.faq-icon { color: var(--brand-dark); font-size: 1.25rem; line-height: 1; }
.faq-a { display: none; padding: 0 20px 18px; color: var(--muted); font-size: .9rem; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.cta-section { background: var(--navy-soft); color: #fff; text-align: center; padding: 72px 0; }
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 0 0 12px; }
.cta-section p { color: #c1d1db; margin: 0 auto 26px; }
footer { background: var(--navy); color: #b8c9d5; padding: 28px 0; font-size: .84rem; }
footer .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px 24px; }
footer .footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
footer a { color: #b8c9d5; }
footer a:hover { color: #fff; }
.legal-main { padding: 64px 0 8px; }
.legal-main h1 { font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.15; margin: 0 0 10px; }
.legal-date { color: var(--muted); font-size: .85rem; margin-bottom: 34px; }
.legal-main h2 { font-size: 1.14rem; margin: 34px 0 9px; }
.legal-main p, .legal-main li { color: var(--muted); font-size: .92rem; }
.legal-main ul { padding-left: 22px; display: grid; gap: 7px; margin: 12px 0; }
.legal-lead { color: var(--ink) !important; font-size: 1rem !important; }
.notice { background: #eaf1f3; border-left: 4px solid var(--brand); padding: 16px 18px; margin: 24px 0; }
.notice p { color: var(--ink); margin: 0; }
.contact-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-top: 34px; }
.contact-box h2 { margin-top: 0; }
@media (max-width: 800px) {
  .features-grid, .workflow, .pricing-grid, .screenshots-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .container, .narrow { width: min(100% - 28px, 760px); }
  .site-nav .container { min-height: 60px; }
  .nav-links { display: none; }
  .hero { padding: 54px 0 48px; }
  .hero p { font-size: 1rem; }
  .section { padding: 58px 0; }
  .features-grid, .workflow, .pricing-grid, .screenshots-grid { grid-template-columns: 1fr; }
  .plan .desc { min-height: 0; }
  footer .container { align-items: flex-start; flex-direction: column; }
}
