:root {
  color-scheme: light;
  --background: #fbfaf7;
  --surface: #ffffff;
  --ink: #24313a;
  --muted: #63717b;
  --line: #ded8cf;
  --primary: #b9553c;
  --primary-dark: #8b3f2e;
  --sage: #6f8f7b;
  --gold: #d9a441;
  --shadow: 0 18px 60px rgba(36, 49, 58, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--background);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
.section {
  width: 100%;
}

.inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(222, 216, 207, 0.8);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(185, 85, 60, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  padding: 60px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  color: var(--primary-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 78px);
  max-width: 760px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  font-size: 21px;
}

.lead {
  color: var(--muted);
  font-size: 20px;
  max-width: 660px;
  margin: 22px 0 0;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  font: inherit;
}

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

.button.primary:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.button.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.phone {
  justify-self: center;
  width: min(360px, 100%);
  aspect-ratio: 0.52;
  border: 12px solid #26323a;
  border-radius: 42px;
  background: #f6efe7;
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.screen-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.mascot {
  width: 104px;
  height: 104px;
  margin: 10px auto 4px;
  display: block;
}

.question {
  font-size: 23px;
  font-weight: 900;
  text-align: center;
  margin: 8px 0 6px;
}

.small {
  color: var(--muted);
  font-size: 14px;
}

.answer-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.answer {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fbfaf7;
  font-weight: 800;
}

.section {
  padding: 72px 0;
}

.band {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.feature-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.feature:nth-child(1) .feature-mark {
  background: var(--primary);
}

.feature:nth-child(2) .feature-mark {
  background: var(--sage);
}

.feature:nth-child(3) .feature-mark {
  background: var(--gold);
}

.feature p,
.legal p,
.legal li {
  color: var(--muted);
}

.legal {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.legal h1 {
  font-size: clamp(36px, 5vw, 56px);
}

.legal h2 {
  font-size: 26px;
  margin-top: 36px;
}

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

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.support-panel {
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  align-items: start;
}

.support-page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 72px;
}

.support-page h1 {
  font-size: clamp(38px, 5vw, 60px);
}

.support-form {
  display: grid;
  gap: 14px;
}

.support-form-large {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  padding: 12px 13px;
}

.form-field textarea {
  resize: vertical;
  min-height: 128px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: var(--sage);
}

.form-status[data-state="error"] {
  color: var(--primary-dark);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 700;
}

@media (max-width: 780px) {
  .inner {
    width: min(100% - 28px, 680px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-grid,
  .feature-grid,
  .download-panel,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .phone {
    width: min(310px, 100%);
  }

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