:root {
  color-scheme: light;
  --ama-blue: #439cd7;
  --ama-blue-dark: #0b4f87;
  --ama-orange: #fda02c;
  --ama-orange-dark: #d97812;
  --ink: #162033;
  --muted: #5d687a;
  --line: #d8e0eb;
  --soft: #f3f7fb;
  --soft-blue: #dceefe;
  --white: #ffffff;
  --danger: #9d251c;
  --shadow: 0 18px 44px rgba(22, 32, 51, 0.12);
  --eyebrow-offset: calc(0.82rem * 1.62 + 14px);
  --anchor-offset: 96px;
  --signup-anchor-offset: 236px;
  font-family: Roboto, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
#signup {
  scroll-margin-top: var(--anchor-offset);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 224, 235, 0.78);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 204px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.nav-links a:hover {
  color: var(--ama-blue-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ama-blue-dark);
  border-radius: 6px;
  background: var(--ama-blue-dark);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.button:hover {
  background: #083f6f;
}

.button.secondary {
  background: transparent;
  color: var(--ama-blue-dark);
}

.button.secondary:hover {
  background: rgba(67, 156, 215, 0.1);
}

.button.orange {
  border-color: var(--ama-orange-dark);
  background: var(--ama-orange);
  color: #1c2430;
}

.button.orange:hover {
  background: #f28f19;
}

.hero {
  background:
    linear-gradient(180deg, rgba(220, 238, 254, 0.82), rgba(255, 255, 255, 0.94) 66%),
    var(--soft);
}

.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 54px;
  align-items: start;
}

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

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: 4.25rem;
  line-height: 1;
  font-weight: 800;
}

h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.16;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.lede {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.16rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-line {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.mail-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  container-type: inline-size;
  overflow: hidden;
}

.hero-inner > .mail-preview {
  margin-top: var(--eyebrow-offset);
}

.preview-top {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ama-orange);
}

.dot.blue {
  background: var(--ama-blue);
}

.dot.navy {
  background: var(--ama-blue-dark);
}

.preview-address {
  padding: 28px;
}

.address-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.address-large {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 5.4cqw, 1.72rem);
  line-height: 1.15;
  font-weight: 800;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
  word-break: normal;
}

.message-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.message-row {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.message-row strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.message-row span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--ama-blue);
}

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

.section.band {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 64px 0;
  background: var(--soft);
}

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

.section-head {
  max-width: 700px;
  margin-bottom: 28px;
}

.feature,
.faq-item,
.price-box,
.step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature,
.step {
  padding: 24px;
}

.feature-kicker {
  margin: 0 0 8px;
  color: var(--ama-blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.feature p:not(.feature-kicker),
.step p {
  margin-bottom: 0;
}

.offer-examples {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: -6px 0 22px;
  padding: 12px 14px;
  border: 1px solid rgba(67, 156, 215, 0.24);
  border-left: 4px solid var(--ama-orange);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(220, 238, 254, 0.46), #ffffff 76%);
  color: var(--muted);
  font-size: 0.9rem;
}

.offer-examples span {
  font-weight: 800;
}

.offer-examples code {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 800;
}

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

.offer-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 10px 26px rgba(22, 32, 51, 0.06);
}

.offer-card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: rgba(67, 156, 215, 0.14);
  color: var(--ama-blue-dark);
  box-shadow: inset 0 0 0 1px rgba(67, 156, 215, 0.2);
}

.offer-card-icon.orange {
  background: rgba(253, 160, 44, 0.16);
  color: #9a570d;
  box-shadow: inset 0 0 0 1px rgba(253, 160, 44, 0.25);
}

.offer-card-icon.navy {
  background: rgba(11, 79, 135, 0.1);
  color: var(--ama-blue-dark);
  box-shadow: inset 0 0 0 1px rgba(11, 79, 135, 0.18);
}

.offer-card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.offer-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.48;
}

.offer-card strong {
  color: var(--ink);
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.price-box {
  padding: 26px;
  box-shadow: var(--shadow);
}

.offer-layout > .price-box {
  margin-top: var(--eyebrow-offset);
  scroll-margin-top: var(--signup-anchor-offset);
}

.signup-form {
  display: grid;
  gap: 13px;
  margin-top: 22px;
}

.plan-options {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 8px;
}

.plan-options legend {
  margin: 0 0 7px;
  padding: 0;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 800;
}

.plan-option {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  cursor: pointer;
}

.plan-option:has(input:checked) {
  border-color: var(--ama-blue-dark);
  background: rgba(67, 156, 215, 0.12);
}

.plan-option input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--ama-blue-dark);
}

.plan-option span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.plan-option strong {
  color: var(--ink);
  font-size: 1rem;
}

.plan-option small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: right;
}

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

.field input {
  min-width: 0;
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 500;
}

.field input:focus {
  border-color: var(--ama-blue);
  outline: 3px solid rgba(67, 156, 215, 0.16);
}

.input-combo {
  display: flex;
  min-width: 0;
}

.input-combo input {
  border-radius: 6px 0 0 6px;
}

.input-combo .suffix {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 6px 6px 0;
  padding: 0 10px;
  background: #f8fbff;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.field-help {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.42;
}

.field-help strong {
  color: var(--ink);
  font-weight: 800;
}

.signup-form .button {
  width: 100%;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
}

.signup-form .button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-fine-print {
  margin: -1px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-fine-print a {
  color: var(--ama-blue-dark);
  font-weight: 800;
}

.form-message {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f8fbff;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-message.error {
  border-color: #f0b9ad;
  background: #fff4f1;
  color: var(--danger);
}

.form-message-title,
.form-message-reason,
.form-message-guidance {
  display: block;
}

.form-message-title {
  color: var(--ink);
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.form-message-reason {
  color: var(--danger);
}

.form-message-guidance {
  color: var(--muted);
  margin-top: 6px;
}

.form-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.suggestion-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ama-blue-dark);
  padding: 6px 10px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0 6px;
}

.price strong {
  color: var(--ink);
  font-size: 3rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
}

.included-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.included-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--ama-orange);
}

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

.step-number {
  color: var(--ama-orange-dark);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 20px;
}

.faq-item p {
  margin-bottom: 0;
}

.legal-note {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.share-section {
  padding-top: 52px;
}

.share-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.share-panel p {
  margin-bottom: 0;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.share-actions .button {
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
}

.share-actions .button.icon-only {
  width: 42px;
  padding: 0;
}

.share-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.share-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.share-icon.facebook {
  color: #1877f2;
}

.share-icon.x {
  color: #111111;
}

.share-icon.linkedin {
  color: #0a66c2;
}

.share-icon.line svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.share-feedback {
  display: inline-flex;
  align-items: center;
  color: var(--ama-blue-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.share-feedback[hidden] {
  display: none;
}

.footer {
  flex-shrink: 0;
  border-top: 1px solid var(--line);
  background: #0d1b2e;
  color: var(--white);
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.footer a {
  color: var(--white);
}

.simple-page {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.notice {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--ama-blue);
  border-radius: 8px;
  background: var(--white);
}

@media (min-width: 881px) and (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    gap: 32px;
  }

  h1 {
    max-width: 520px;
    font-size: 3.35rem;
  }

  .lede {
    max-width: 540px;
  }
}

@media (max-width: 880px) {
  :root {
    --anchor-offset: 86px;
    --signup-anchor-offset: 86px;
  }

  .nav {
    min-height: 70px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links .optional {
    display: none;
  }

  .hero-inner,
  .offer-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner > .mail-preview,
  .offer-layout > .price-box {
    margin-top: 0;
  }

  h1 {
    font-size: 3.2rem;
  }

  .steps,
  .offer-cards,
  .share-panel {
    grid-template-columns: 1fr;
  }

  .share-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 28px, 1120px);
  }

  .brand img {
    width: 164px;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .hero-inner,
  .section,
  .section.band > .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero-inner {
    padding-top: 44px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .address-large {
    font-size: 1.32rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}
