:root {
  --accent: #fd7601;
  --accent-dark: #d96400;
  --ink: #1c1c1e;
  --muted: #6b6b70;
  --line: #e6e6e9;
  --bg: #ffffff;
  --bg-soft: #f7f7f8;
  --max-width: 880px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

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

/* Header */

header.site-header {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

nav.site-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

nav.site-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  nav.site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 2px;
    order: 3;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid var(--line);
  }

  nav.site-nav.open {
    display: flex;
  }

  nav.site-nav a {
    padding: 10px 2px;
  }

  header.site-header .wrap {
    position: relative;
  }
}

nav.site-nav a:hover {
  color: var(--accent-dark);
  text-decoration: none;
}

/* Hero */

.hero {
  padding: 72px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hero p.subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 32px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--accent);
  text-decoration: none;
}

.pill-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Sections */

section {
  padding: 56px 0;
}

section.soft {
  background: var(--bg-soft);
}

section h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

section .section-lede {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(253, 118, 1, 0.12);
  color: var(--accent-dark);
  font-weight: 800;
  margin-bottom: 14px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Screens showcase */

.screens-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 620px;
  margin: 0 auto;
}

@media (max-width: 560px) {
  .screens-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

.screen-item {
  text-align: center;
}

.phone-frame {
  border: 8px solid var(--ink);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(28, 28, 30, 0.35);
  line-height: 0;
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.screen-caption {
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.95rem;
}

.screen-caption span {
  display: block;
  margin-top: 2px;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  background: var(--bg);
}

.price-card .plan-name {
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.price-card .plan-price {
  font-size: 2rem;
  font-weight: 800;
  margin: 10px 0 2px;
}

.price-card .plan-period {
  color: var(--muted);
  font-size: 0.9rem;
}

.free-case-note {
  text-align: center;
  max-width: 560px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Legal / content pages */

.legal main {
  padding: 48px 0 72px;
}

.legal h1 {
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.legal .effective-date {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal .lede {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 1.2rem;
  margin: 36px 0 10px;
  letter-spacing: -0.005em;
}

.legal p, .legal li {
  color: #333338;
  font-size: 0.98rem;
}

.legal ul {
  padding-left: 22px;
}

.legal a {
  word-break: break-word;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* FAQ */

details.faq {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 12px;
  background: var(--bg);
}

details.faq summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

details.faq summary::-webkit-details-marker {
  display: none;
}

details.faq summary::before {
  content: "+";
  color: var(--accent-dark);
  font-weight: 800;
  margin-right: 10px;
}

details.faq[open] summary::before {
  content: "\2212";
}

details.faq p {
  margin: 10px 0 2px;
  color: var(--muted);
}

/* Footer */

footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  margin-top: 24px;
}

footer.site-footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-copyright {
  color: var(--muted);
  font-size: 0.8rem;
}
