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

:root {
  --bg: #f7f4ed;
  --bg-2: #f0ebe1;
  --surface: #fbfaf7;
  --surface-2: #f4efe5;
  --card: #fffdf9;
  --ink: #1e232c;
  --ink-soft: #5f6773;
  --line: #ded7ca;
  --line-strong: #cfc5b5;
  --amber: #d79028;
  --signal: #456ed8;
  --ready: #3f8f67;
  --alert: #c24f36;
  --shadow: 0 24px 70px rgba(34, 34, 34, 0.08);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(215, 144, 40, 0.10), transparent 32%),
    linear-gradient(180deg, #faf7f0 0%, var(--bg) 26%, #f6f1e8 100%);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
a.button {
  font: inherit;
}

.container {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(207, 197, 181, 0.75);
  background: rgba(247, 244, 237, 0.86);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(69, 110, 216, 0.12);
}

.brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--amber);
  flex: 0 0 auto;
}

.brand-name {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-name span {
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a,
.header-compact a {
  color: var(--ink-soft);
  font-size: 14px;
  transition: color 160ms ease;
}

.nav-links a:hover,
.header-compact a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--ink);
}

.header-compact {
  display: none;
  align-items: center;
  gap: 18px;
}

.hero {
  border-bottom: 1px solid var(--line);
}

.hero-grid,
.feature-grid,
.cta-grid,
.two-column,
.legal-grid,
.support-grid {
  display: grid;
  gap: 32px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: end;
  padding: 82px 0 88px;
}

.eyebrow,
.stat-note,
.kicker {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow {
  font-size: 11px;
  color: var(--ink-soft);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 11px;
  margin-bottom: 28px;
}

.badge-dot,
.mini-dot,
.list-dot {
  border-radius: 999px;
  flex: 0 0 auto;
}

.badge-dot,
.mini-dot {
  width: 8px;
  height: 8px;
}

.list-dot {
  width: 6px;
  height: 6px;
  margin-top: 9px;
}

.dot-amber { background: var(--amber); }
.dot-signal { background: var(--signal); }
.dot-ready { background: var(--ready); }
.dot-alert { background: var(--alert); }
.dot-ink { background: var(--ink); }

.hero h1,
.section-title,
.page-title,
.cta-title,
.price-title,
.feature-title {
  margin: 0;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(46px, 9vw, 82px);
  max-width: 8.5ch;
}

.hero h1 .muted-emphasis,
.cta-title .muted-emphasis,
.price-title .muted-emphasis,
.page-title .muted-emphasis {
  color: var(--ink-soft);
}

.lead,
.section-copy,
.page-copy,
.card-copy,
.legal-body,
.spec-value,
.faq-copy {
  color: var(--ink-soft);
  line-height: 1.7;
}

.lead {
  max-width: 620px;
  font-size: 18px;
  margin: 28px 0 0;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: var(--card);
  box-shadow: 0 10px 28px rgba(34, 34, 34, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.store-button:hover,
.primary-button:hover,
.secondary-button:hover,
.simple-button:hover {
  transform: translateY(-1px);
}

.store-button:hover {
  box-shadow: 0 18px 32px rgba(34, 34, 34, 0.08);
  border-color: #c8bdac;
}

.store-button svg {
  width: 24px;
  height: 24px;
}

.store-button small {
  display: block;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.store-button strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.stat-note {
  margin-top: 18px;
  font-size: 11px;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
}

.hero-app-preview {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.device-frame.compact-hero-frame {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.device-frame.compact-hero-frame::before {
  display: none;
}

.device-frame.compact-hero-frame img {
  width: min(100%, 265px);
  height: auto;
}

.hero-dashboard {
  align-self: stretch;
}

.hero-surface {
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(244,239,229,0.96)),
    radial-gradient(circle at top right, rgba(69, 110, 216, 0.08), transparent 40%);
  box-shadow: var(--shadow);
  padding: 30px;
}

.hero-surface-head h2 {
  margin: 12px 0 0;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-surface-copy {
  margin: 16px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 15px;
}

.hero-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero-status-card {
  border: 1px solid rgba(207, 197, 181, 0.92);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.92);
  padding: 18px;
}

.hero-status-label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}

.hero-status-card strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.hero-status-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 14px;
}

.hero-summary-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-summary-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(207, 197, 181, 0.92);
  background: rgba(255, 252, 247, 0.9);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.device-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(244,239,229,0.95));
  box-shadow: var(--shadow);
  padding: 20px;
}

.device-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(69, 110, 216, 0.08), transparent 45%, rgba(215, 144, 40, 0.08));
  pointer-events: none;
}

.device-frame img {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: min(100%, 410px);
}

.callout-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(207, 197, 181, 0.92);
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 18px 34px rgba(34, 34, 34, 0.08);
  border-radius: 14px;
  padding: 13px 15px;
  min-width: 180px;
}

.callout-card strong {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.callout-left {
  top: 66px;
  left: -18px;
}

.callout-right {
  right: -16px;
  bottom: 72px;
}

.section {
  border-bottom: 1px solid var(--line);
}

.section-inner {
  padding: 90px 0;
}

.benefit-strip {
  background: rgba(255, 252, 247, 0.62);
}

.benefit-strip .section-inner {
  padding: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}

.benefit-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.benefit-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(34px, 5vw, 60px);
}

.section-copy {
  font-size: 17px;
  margin: 0;
}

.step-grid,
.pricing-grid,
.footer-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.step-card,
.price-card,
.faq-item,
.detail-card,
.contact-card {
  background: var(--card);
}

.step-card {
  padding: 34px;
}

.step-card .eyebrow {
  color: var(--amber);
}

.step-card h3,
.feature-title,
.price-card h3,
.subsection-title,
.faq-question {
  margin: 18px 0 0;
  font-family: "Inter Tight", system-ui, sans-serif;
  letter-spacing: -0.03em;
}

.step-card h3,
.price-card h3,
.subsection-title {
  font-size: 24px;
}

.card-copy {
  font-size: 15px;
  margin: 12px 0 0;
}

.feature-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.feature-grid.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.feature-copy-wrap {
  max-width: 480px;
}

.feature-title {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.02;
}

.feature-image,
.info-panel,
.spec-sheet,
.highlight-panel,
.legal-panel,
.faq-list {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 10px 28px rgba(34, 34, 34, 0.04);
}

.feature-image {
  border-radius: 18px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: auto;
}

.info-panel {
  padding: 26px 28px;
}

.code-list,
.spec-list,
.inline-list,
.footer-links,
.legal-index {
  list-style: none;
  padding: 0;
  margin: 0;
}

.code-list li,
.spec-row,
.inline-list li,
.legal-index li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.code-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.code-list li:first-child {
  border-top: 0;
}

.code-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.code-meta .code {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  color: var(--ink);
}

.code-meta .label {
  color: var(--ink-soft);
  font-size: 14px;
}

.panel-note {
  margin-top: 18px;
  font-size: 11px;
  color: var(--ink-soft);
}

.surface-section {
  background: rgba(255, 252, 247, 0.55);
}

.spec-sheet {
  padding: 16px 24px;
}

.spec-row {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.spec-row:first-child {
  border-top: 0;
}

.spec-key {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--ink-soft);
}

.spec-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  margin-top: 46px;
}

.price-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.pro::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--amber);
}

.kicker {
  font-size: 11px;
  color: var(--ink-soft);
}

.pro .kicker {
  color: var(--amber);
}

.price-amount {
  margin-top: 22px;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-subcopy {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 15px;
}

.feature-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 12px;
  margin-top: 13px;
  font-size: 15px;
  line-height: 1.55;
}

.feature-list li:first-child {
  margin-top: 0;
}

.primary-button,
.secondary-button,
.simple-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.primary-button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.secondary-button,
.simple-button {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.secondary-button:hover,
.simple-button:hover {
  background: var(--surface-2);
}

.price-card .primary-button,
.price-card .secondary-button {
  margin-top: 28px;
}

.price-footnote {
  margin-top: 18px;
  text-align: center;
  font-size: 11px;
  color: var(--ink-soft);
}

.cta-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: end;
}

.cta-title,
.page-title {
  font-size: clamp(40px, 6vw, 72px);
}

.site-footer {
  background: rgba(255, 252, 247, 0.72);
}

.footer-grid {
  grid-template-columns: 1.25fr 0.7fr 0.7fr 0.9fr;
  background: transparent;
  gap: 32px;
  padding: 52px 0 34px;
}

.footer-copy {
  max-width: 320px;
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.footer-links li {
  margin-top: 11px;
  font-size: 14px;
  color: var(--ink-soft);
}

.footer-links li:first-child {
  margin-top: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 34px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--ink-soft);
}

.page-hero {
  background: rgba(255, 252, 247, 0.72);
  border-bottom: 1px solid var(--line);
}

.page-hero .section-inner {
  padding: 82px 0 68px;
}

.page-title {
  max-width: 760px;
}

.page-copy {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 18px;
}

.support-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.contact-card,
.detail-card,
.legal-panel,
.highlight-panel {
  border-radius: 18px;
}

.contact-card,
.detail-card,
.highlight-panel,
.legal-panel {
  padding: 28px;
}

.contact-card {
  box-shadow: var(--shadow);
}

.contact-card p,
.detail-card p,
.highlight-panel p,
.legal-panel p,
.legal-panel li,
.legal-panel td,
.legal-panel th {
  margin: 0;
}

.subsection-title {
  margin-top: 8px;
}

.inline-list li {
  justify-content: flex-start;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
}

.inline-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 32px;
}

.faq-list {
  border-radius: 18px;
  overflow: hidden;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 28px;
}

.faq-item:first-child {
  border-top: 0;
}

.faq-question {
  font-size: 18px;
}

.faq-copy {
  margin-top: 10px;
  font-size: 15px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
}

.legal-index {
  position: sticky;
  top: 108px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.8);
  padding: 20px 22px;
}

.legal-index li {
  justify-content: flex-start;
  padding: 9px 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.legal-panel {
  box-shadow: var(--shadow);
}

.legal-stamp {
  margin-bottom: 34px;
  font-size: 11px;
  color: var(--ink-soft);
}

.legal-section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-section:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.legal-section h2 {
  margin: 0;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.legal-body {
  margin-top: 14px;
  font-size: 16px;
}

.legal-body p + p,
.legal-body ul + p,
.legal-body p + ul,
.legal-body ul + ul {
  margin-top: 14px;
}

.legal-body ul {
  padding-left: 20px;
}

.notice {
  border: 1px solid rgba(215, 144, 40, 0.34);
  background: rgba(215, 144, 40, 0.1);
  border-radius: 16px;
  padding: 18px 18px;
  margin-top: 16px;
}

.notice strong {
  color: #8f5d0c;
}

.text-link {
  color: var(--signal);
  transition: color 160ms ease;
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .feature-grid.reverse,
  .cta-grid,
  .support-grid,
  .faq-layout,
  .legal-layout,
  .section-header,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .step-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-status-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0;
    min-height: auto;
  }

  .benefit-item:first-child {
    border-top: 0;
  }

  .callout-card {
    position: static;
    margin-top: 16px;
  }

  .legal-index {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--content), calc(100% - 28px));
  }

  .nav-links,
  .header-action {
    display: none;
  }

  .header-compact {
    display: flex;
  }

  .hero-grid {
    padding: 52px 0 62px;
  }

  .section-inner,
  .page-hero .section-inner {
    padding: 68px 0;
  }

  .device-frame {
    padding: 16px;
  }

  .device-frame.compact-hero-frame {
    padding: 0;
  }

  .device-frame.compact-hero-frame img {
    width: min(100%, 225px);
    height: auto;
  }

  .hero-surface {
    padding: 22px;
  }

  .step-card,
  .price-card,
  .faq-item,
  .contact-card,
  .detail-card,
  .highlight-panel,
  .legal-panel,
  .spec-sheet,
  .info-panel {
    padding: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition: none !important;
  }
}
