@font-face {
  font-family: "Noto Sans";
  src: url("./NotoSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("./NotoSans-Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --ink: #24212b;
  --muted: #6f6977;
  --paper: #fffaf8;
  --surface: #ffffff;
  --line: rgba(55, 48, 69, 0.12);
  --teal: #137b6c;
  --teal-dark: #0d5d53;
  --aqua: #4fd1c5;
  --blue: #536fc4;
  --lilac: #8a6ec8;
  --coral: #f28b76;
  --apricot: #ffbd72;
  --shadow: 0 24px 70px rgba(48, 39, 63, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(55, 48, 69, 0.08);
  background: rgba(255, 250, 248, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

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

.nav-links > a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links > a:hover,
.nav-links > a:focus-visible {
  color: var(--teal);
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 6px 20px rgba(34, 29, 43, 0.06);
}

.language-switch a {
  min-width: 38px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.language-switch a[aria-current="page"] {
  color: white;
  background: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(36, 33, 43, 0.18);
}

.button.primary {
  background: linear-gradient(135deg, var(--teal), #236b83);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(242, 139, 118, 0.18), transparent 30%),
    radial-gradient(circle at 93% 42%, rgba(79, 209, 197, 0.2), transparent 32%),
    linear-gradient(135deg, #fff9f7 0%, #fcf9ff 55%, #f7fffd 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -290px;
  height: 440px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  filter: blur(12px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
  padding-block: 88px 122px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(19, 123, 108, 0.18);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(27, 102, 92, 0.08);
}

.eyebrow::before {
  content: "✓";
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(79, 209, 197, 0.18);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, var(--coral), var(--lilac) 48%, var(--teal));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.trust-row span::before {
  content: "•";
  margin-right: 8px;
  color: var(--teal);
}

.hero-visual {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.hero-glow {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(83, 111, 196, 0.3), rgba(79, 209, 197, 0.26));
  filter: blur(18px);
  animation: breathe 6s ease-in-out infinite;
}

.phone {
  position: relative;
  z-index: 2;
  width: 314px;
  padding: 11px;
  border: 5px solid #282431;
  border-radius: 48px;
  background: #282431;
  box-shadow: 0 42px 90px rgba(43, 38, 58, 0.26);
  transform: rotate(3deg);
  animation: float 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 12px;
  left: 50%;
  width: 94px;
  height: 25px;
  border-radius: 20px;
  background: #282431;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 590px;
  overflow: hidden;
  border-radius: 34px;
  background: #fffaf9;
}

.screen-status {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px 8px;
  color: #3d3942;
  font-size: 9px;
  font-weight: 800;
}

.screen-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-bottom: 1px solid #eee7e4;
  font-size: 11px;
  font-weight: 800;
}

.screen-topbar img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.screen-body {
  padding: 17px 14px 12px;
}

.screen-kicker {
  margin-bottom: 2px;
  color: #7b747d;
  font-size: 9px;
}

.screen-title {
  margin-bottom: 13px;
  font-size: 19px;
  font-weight: 900;
}

.baby-summary {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1fr;
  align-items: center;
  margin-bottom: 16px;
  padding: 14px 10px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(120deg, #137b6c, #566f8f);
  box-shadow: 0 12px 24px rgba(19, 123, 108, 0.2);
  font-size: 9px;
  text-align: center;
}

.baby-summary strong {
  display: block;
  font-size: 13px;
}

.baby-summary > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.quick-label {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.quick-card {
  min-height: 78px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: 14px;
  color: #176e61;
  background: #eaf4f2;
  font-size: 8px;
  font-weight: 700;
  text-align: center;
}

.quick-card:nth-child(2),
.quick-card:nth-child(5) {
  color: #4a72c4;
  background: #edf1fb;
}

.quick-card:nth-child(3) {
  color: #c97819;
  background: #fff2e4;
}

.quick-card:nth-child(4) {
  color: #bd5f64;
  background: #fcebed;
}

.quick-card:nth-child(6) {
  color: #7d6885;
  background: #f5edef;
}

.quick-card b {
  font-size: 19px;
  line-height: 1;
}

.screen-bottom {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 14px;
  padding: 10px 6px;
  border-top: 1px solid #eee7e4;
  color: #777078;
  font-size: 7px;
  font-weight: 700;
  text-align: center;
}

.screen-bottom strong {
  color: var(--teal);
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(55, 48, 69, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(43, 38, 58, 0.14);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 800;
}

.floating-note span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  background: #e5f7f3;
}

.note-one {
  top: 90px;
  left: 0;
  animation: float-note 5s ease-in-out infinite;
}

.note-two {
  right: -6px;
  bottom: 100px;
  animation: float-note 5s 1.2s ease-in-out infinite;
}

.value-strip {
  position: relative;
  z-index: 3;
  margin-top: -62px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  color: white;
  background: linear-gradient(120deg, #24212b, #303246 58%, #294c54);
  box-shadow: var(--shadow);
}

.value-item {
  padding: 28px;
}

.value-item + .value-item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.value-item strong {
  display: block;
  margin-bottom: 4px;
  color: #91e2d4;
  font-size: 18px;
}

.value-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding-block: 112px;
}

.section.soft {
  background: #f8f4f4;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-label {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.split-copy h2,
.privacy-card h2,
.cta-card h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.section-heading p,
.split-copy > p,
.privacy-card > p,
.cta-card > p {
  color: var(--muted);
  font-size: 17px;
}

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

.feature-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(19, 123, 108, 0.28);
  box-shadow: 0 24px 50px rgba(48, 39, 63, 0.09);
}

.feature-card.large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  background: linear-gradient(140deg, #ffffff, #f0faf7);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 16px;
  color: var(--teal-dark);
  background: #e3f5f1;
  font-size: 24px;
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(5) .feature-icon {
  color: #7655b3;
  background: #efe8fb;
}

.feature-card:nth-child(3) .feature-icon,
.feature-card:nth-child(6) .feature-icon {
  color: #c76d2c;
  background: #fff0df;
}

.feature-card h3 {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.25;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.food-visual {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 8px;
  transform: rotate(2deg);
}

.food-chip {
  min-height: 88px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(42, 99, 88, 0.1);
  font-size: 30px;
}

.food-chip small {
  display: block;
  margin-top: -20px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.showcase-card {
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 20px 52px rgba(49, 40, 62, 0.08);
}

.showcase-copy {
  padding: 26px 26px 18px;
}

.showcase-copy span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-copy h3 {
  margin: 7px 0;
  font-size: 22px;
}

.showcase-copy p {
  color: var(--muted);
  font-size: 13px;
}

.mini-screen {
  min-height: 320px;
  margin: 0 22px -30px;
  padding: 18px;
  border: 7px solid #2b2731;
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
  background: #fffaf9;
  transform: translateY(4px);
  transition: transform 0.3s ease;
}

.showcase-card:hover .mini-screen {
  transform: translateY(-4px);
}

.timeline-row,
.growth-row,
.menu-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 14px;
  background: #f3f7f6;
  font-size: 10px;
  font-weight: 700;
}

.timeline-row b,
.menu-row b {
  display: grid;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 11px;
  background: white;
  font-size: 17px;
}

.growth-chart {
  position: relative;
  height: 135px;
  margin-top: 14px;
  border-radius: 16px;
  background:
    linear-gradient(to right, transparent 49%, rgba(53, 65, 82, 0.07) 50%, transparent 51%),
    linear-gradient(to bottom, transparent 32%, rgba(53, 65, 82, 0.07) 33%, transparent 34%, transparent 65%, rgba(53, 65, 82, 0.07) 66%, transparent 67%),
    #f6f3fa;
}

.growth-chart::before {
  content: "";
  position: absolute;
  inset: 52px 16px auto;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lilac), var(--coral), var(--teal));
  transform: rotate(-9deg);
  box-shadow: 0 0 0 9px rgba(138, 110, 200, 0.07);
}

.growth-row {
  justify-content: space-between;
  margin-top: 12px;
}

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

.step {
  counter-increment: steps;
  padding: 28px;
  border-top: 1px solid var(--line);
}

.step::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 30px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.step h3 {
  font-size: 20px;
}

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

.privacy-wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
  align-items: stretch;
}

.privacy-card,
.privacy-points {
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius-xl);
}

.privacy-card {
  color: white;
  background: linear-gradient(145deg, #163f3b, #244a5b 62%, #4d4d74);
}

.privacy-card > p {
  color: rgba(255, 255, 255, 0.7);
}

.privacy-card .button {
  margin-top: 16px;
  color: var(--ink);
  background: white;
}

.privacy-points {
  border: 1px solid var(--line);
  background: white;
}

.privacy-point {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding-block: 20px;
}

.privacy-point + .privacy-point {
  border-top: 1px solid var(--line);
}

.privacy-point > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  background: #e8f6f3;
  font-size: 21px;
}

.privacy-point h3 {
  margin-bottom: 4px;
  font-size: 17px;
}

.privacy-point p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  max-width: 860px;
  margin-inline: auto;
}

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

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  color: var(--teal);
  font-size: 24px;
  transition: transform 0.2s ease;
}

.faq-item button[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 48px 22px 0;
  color: var(--muted);
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 80px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #effaf7, #fff4ef 52%, #f1edfb);
  text-align: center;
}

.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  filter: blur(8px);
}

.cta-card::before {
  top: -130px;
  left: -80px;
  background: rgba(79, 209, 197, 0.24);
}

.cta-card::after {
  right: -90px;
  bottom: -140px;
  background: rgba(242, 139, 118, 0.22);
}

.cta-card > * {
  position: relative;
  z-index: 2;
}

.cta-card .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 56px 0 28px;
  background: #24212b;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 0.8fr);
  gap: 50px;
  padding-bottom: 42px;
}

.footer-brand p {
  max-width: 440px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-col h3 {
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-col a {
  display: block;
  margin-block: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #91e2d4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.legal-main {
  min-height: 100vh;
  padding: 64px 0 96px;
  background:
    radial-gradient(circle at 10% 0%, rgba(242, 139, 118, 0.12), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(79, 209, 197, 0.12), transparent 28%),
    var(--paper);
}

.legal-card {
  width: min(860px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow);
}

.legal-header {
  margin-bottom: 40px;
  text-align: center;
}

.legal-header img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.legal-header h1 {
  margin: 12px auto;
  font-size: clamp(32px, 6vw, 48px);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 21px;
}

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

.legal-notice {
  padding: 17px 19px;
  border-left: 4px solid var(--teal);
  border-radius: 14px;
  background: #edf8f5;
}

.legal-notice.danger {
  border-left-color: #c54343;
  background: #fff0ee;
}

.legal-card a:not(.button) {
  color: var(--teal-dark);
  font-weight: 700;
}

.legal-footer {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-12px); }
}

@keyframes float-note {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.06); opacity: 0.95; }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 4px;
    padding: 22px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 250, 248, 0.98);
    box-shadow: 0 24px 50px rgba(35, 30, 44, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links > a {
    padding: 12px;
    font-size: 16px;
  }

  .language-switch,
  .nav-cta {
    margin-top: 8px;
    justify-self: start;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 70px;
    text-align: center;
  }

  .hero-copy > p,
  h1 {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: 560px;
  }

  .feature-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card.large {
    grid-column: span 2;
  }

  .showcase-card:last-child {
    grid-column: span 2;
  }

  .privacy-wrap {
    grid-template-columns: 1fr;
  }
}

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

  .nav {
    min-height: 70px;
  }

  .nav-links {
    top: 70px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .legal-nav .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 22px;
    padding: 58px 0 106px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
    transform: scale(0.88);
    margin: -24px -34px -42px;
  }

  .floating-note {
    font-size: 10px;
  }

  .note-one {
    left: 5px;
  }

  .note-two {
    right: 5px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-item {
    padding: 20px;
  }

  .value-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .value-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .feature-grid,
  .showcase-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-card.large,
  .showcase-card:last-child {
    grid-column: auto;
  }

  .feature-card.large {
    grid-template-columns: 1fr;
  }

  .feature-icon {
    margin-bottom: 30px;
  }

  .showcase-card {
    min-height: 450px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
