:root {
  --ink: #131c30;
  --navy: #16233f;
  --coral: #f04a2c;
  --coral-dark: #d83d23;
  --slate: #6f7888;
  --quiet: #8b93a5;
  --porcelain: #f4f6f9;
  --cream: #eee4d6;
  --paper: #fffdfa;
  --soft: #f7f2eb;
  --line: rgba(22, 35, 63, 0.12);
  --shadow: 0 28px 80px rgba(19, 28, 48, 0.15);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header,
.site-footer,
.section {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand img {
  width: 188px;
  height: auto;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(19, 28, 48, 0.72);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-header nav a:hover,
.site-footer nav a:hover {
  color: var(--ink);
}

.nav-cta {
  color: var(--coral) !important;
}

.section {
  padding: 76px 0;
}

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  padding-top: 34px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.02;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 13vw, 5.9rem);
}

h2 {
  font-size: clamp(2.25rem, 8vw, 4.4rem);
}

h3 {
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.hero-subhead {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(19, 28, 48, 0.74);
  font-size: clamp(1.08rem, 4vw, 1.35rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.button-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 18px 34px rgba(240, 74, 44, 0.22);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.52);
  border-color: var(--line);
  color: var(--navy);
}

.button-secondary:hover {
  background: white;
}

.availability-note {
  margin: 14px 0 0;
  color: rgba(19, 28, 48, 0.58);
  font-size: 0.95rem;
}

.hero-visual {
  max-width: 430px;
  height: min(720px, 74svh);
  margin-inline: auto;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.intro-band,
.privacy-band {
  display: grid;
  gap: 24px;
  padding: 44px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.58);
}

.intro-band h2,
.privacy-band h2 {
  font-size: clamp(2rem, 7vw, 3.5rem);
}

.intro-band p,
.privacy-band p {
  margin: 0;
  color: rgba(19, 28, 48, 0.72);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(19, 28, 48, 0.72);
  font-size: 1.1rem;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.steps article,
.memory-points article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.62);
}

.steps span {
  display: block;
  margin-bottom: 42px;
  color: var(--coral);
  font-weight: 850;
}

.steps p,
.memory-points p,
.feature-copy p,
.final-cta p {
  color: rgba(19, 28, 48, 0.72);
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.feature-copy {
  max-width: 610px;
}

.feature-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  font-size: 1.08rem;
}

.phone-frame {
  width: min(100%, 400px);
  margin: 0 auto;
  border-radius: 42px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.focus-frame {
  width: min(100%, 430px);
}

.memory-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.memory-points {
  display: grid;
  gap: 14px;
}

.memory-points h3 {
  margin-bottom: 8px;
}

.memory-points p {
  margin: 0;
}

.privacy-copy {
  display: grid;
  gap: 14px;
}

.final-cta {
  text-align: center;
  padding: 86px 0 94px;
}

.final-cta img {
  width: 82px;
  margin: 0 auto 22px;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(19, 28, 48, 0.18);
}

.final-cta p:not(.eyebrow):not(.availability-note) {
  max-width: 590px;
  margin: 18px auto 0;
  font-size: 1.1rem;
}

.cta-center {
  justify-content: center;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.footer-brand img {
  width: 32px;
}

.info-page {
  min-height: calc(100svh - 78px);
  padding: 56px 0 92px;
}

.info-page article {
  max-width: 780px;
}

.info-page h1 {
  font-size: clamp(2.8rem, 11vw, 5rem);
}

.policy-date {
  margin: -6px 0 18px;
  color: rgba(19, 28, 48, 0.56) !important;
  font-size: 0.96rem !important;
  font-weight: 650;
}

.support-contact {
  margin: 34px 0 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.58);
}

.support-contact h2 {
  margin-top: 0;
}

.response-note {
  margin-bottom: 0;
  color: rgba(19, 28, 48, 0.58) !important;
  font-size: 0.96rem !important;
  font-weight: 650;
}

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

.faq-list section {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.info-page h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.06rem;
}

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

.info-page h2 {
  margin-top: 42px;
  font-family: inherit;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.info-page p,
.info-page li {
  color: rgba(19, 28, 48, 0.74);
  font-size: 1.04rem;
}

.info-page ul {
  padding-left: 20px;
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .brand img {
    width: 154px;
  }

  .site-header nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .phone-frame {
    border-radius: 30px;
  }

  .button {
    width: 100%;
  }
}

@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .intro-band,
  .privacy-band {
    grid-template-columns: 0.95fr 1.05fr;
    padding: 56px;
  }

  .feature,
  .memory-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .feature-reverse .feature-copy {
    order: 2;
  }

  .feature-reverse .phone-frame {
    order: 1;
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1040px) {
  .hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.66fr);
    gap: 56px;
  }

  .hero-visual {
    max-width: 450px;
  }
}
