/* ── Fonts ── */

/* Tenor Sans – headings */
@font-face {
  font-family: 'Tenor Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/TenorSans-Regular-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Tenor Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/TenorSans-Regular-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Nunito Sans – body */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/NunitoSans-Regular-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/NunitoSans-Regular-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/NunitoSans-SemiBold-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/NunitoSans-SemiBold-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/NunitoSans-Bold-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/NunitoSans-Bold-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1F2755;
  --body-text: #767C9F;
  --salmon: #E99475;
  --salmon-light: #F2C4B3;
  --peach-bg: #FDF5F0;
  --lavender: #A8AECF;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
  max-width: 100vw;
}

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

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

h1, h2, h3 {
  font-family: 'Tenor Sans', serif;
  font-weight: 400;
  color: var(--navy);
}

/* ── Layout ── */
.section {
  padding: 3.5rem 1.5rem;
}

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

.section--dark {
  background: var(--navy);
  color: var(--white);
}

/* ── Header ── */
.header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: center;
  background: var(--white);
}

.header__logo {
  width: 110px;
}

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 2.5rem 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.hero__deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__deco--peach {
  width: 180px;
  height: 180px;
  background: var(--salmon-light);
  opacity: 0.3;
  top: -40px;
  right: -60px;
}

.hero__deco--ring {
  width: 120px;
  height: 120px;
  border: 1px solid var(--salmon-light);
  opacity: 0.3;
  top: 80px;
  right: 30px;
}

.hero__deco--dot {
  width: 16px;
  height: 16px;
  background: var(--lavender);
  top: 160px;
  left: 20px;
}

.hero__title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  position: relative;
}

.hero__title span {
  display: block;
  color: var(--salmon-light);
}

.hero__title span:last-child {
  color: var(--navy);
}

.hero__subtitle {
  font-size: 0.9375rem;
  color: var(--body-text);
  margin-bottom: 1.75rem;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}

.hero__subtitle strong {
  color: var(--navy);
  font-weight: 600;
}

.hero__mockup {
  width: 240px;
  margin: 0 auto;
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(31, 39, 85, 0.12));
}

/* ── Store Buttons ── */
.store-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: nowrap;
  position: relative;
}

.store-buttons--hero {
  margin-bottom: 2rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--salmon);
  color: var(--white);
  border-radius: 8px;
  padding: 0.5rem 0.875rem;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-btn:active {
  transform: scale(0.96);
}

.store-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.store-btn__text {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: left;
}

.store-btn__text small {
  display: block;
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ── Section Labels ── */
.section__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section__label::before,
.section__label::after {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--navy);
}

.section--dark .section__label::before,
.section--dark .section__label::after {
  background: rgba(255, 255, 255, 0.3);
}

.section__label-text {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section--dark .section__label-text {
  color: rgba(255, 255, 255, 0.6);
}

.section__title {
  font-size: 1.625rem;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.section--dark .section__title {
  color: var(--white);
}

.section__subtitle {
  font-size: 0.9375rem;
  color: var(--body-text);
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Features ── */
.features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature__icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--salmon-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
  color: var(--salmon);
  stroke-width: 1.5;
}

.feature__title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.feature__text {
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.6;
}

/* ── Security ── */
.security-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.security-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.security-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-item__icon svg {
  width: 22px;
  height: 22px;
  color: var(--salmon);
}

.security-item__title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.security-item__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ── Steps ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step__number {
  width: 36px;
  height: 36px;
  background: var(--salmon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tenor Sans', serif;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.step__title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.125rem;
}

.step__text {
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.6;
}

/* ── Notice ── */
.notice {
  background: var(--peach-bg);
  border-left: 3px solid var(--salmon);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem;
  text-align: left;
}

.notice__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.75rem;
}

.notice__icon svg {
  width: 36px;
  height: 36px;
  color: var(--salmon);
}

.notice__title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.notice__text {
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.6;
}

/* ── CTA ── */
.cta {
  text-align: center;
}

.cta__title {
  font-size: 1.625rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.cta__text {
  font-size: 0.9375rem;
  color: var(--body-text);
  margin-bottom: 2rem;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ── */
.footer {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.footer__logo {
  width: 80px;
  margin: 0 auto 1rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer__link {
  font-size: 0.8125rem;
  color: var(--body-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--body-text);
}

/* ── Utilities ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
