:root {
  --navy: #063b68;
  --deep: #072b4d;
  --teal: #00aeb5;
  --orange: #ff7a1a;
  --cream: #fff4e8;
  --warm: #fffcf7;
  --sand: #ead8bd;
  --soft: #f4f1ec;
  --text: #162033;
  --muted: #667085;
  --green: #5f8d75;
  --violet: #5a45ff;
  --line: rgba(22, 32, 51, 0.14);
  --shadow: 0 18px 50px rgba(0, 31, 63, 0.12);
  --radius: 8px;
  --card: #ffffff;
  --field: #ffffff;
  --header-bg: rgba(7, 43, 77, 0.92);
  --hero-overlay: linear-gradient(90deg, rgba(7, 43, 77, 0.92) 0%, rgba(7, 43, 77, 0.70) 48%, rgba(7, 43, 77, 0.16) 100%);
  --hero-overlay-mobile: linear-gradient(0deg, rgba(7, 43, 77, 0.94) 0%, rgba(7, 43, 77, 0.76) 58%, rgba(7, 43, 77, 0.28) 100%);
  --tomorrow-overlay: linear-gradient(0deg, rgba(7, 43, 77, 0.92) 0%, rgba(7, 43, 77, 0.42) 72%);
}

html[data-theme="night"] {
  color-scheme: dark;
  --navy: #0a2f52;
  --deep: #061524;
  --teal: #36c7cc;
  --orange: #ff8a35;
  --cream: #1d2a35;
  --warm: #08111c;
  --sand: #3b4651;
  --soft: #0f1d2b;
  --text: #f6f2ea;
  --muted: #b9c4cf;
  --green: #88c9a6;
  --violet: #9f94ff;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  --card: #111f2d;
  --field: #0b1724;
  --header-bg: rgba(8, 17, 28, 0.9);
  --hero-overlay: linear-gradient(90deg, rgba(4, 13, 24, 0.94) 0%, rgba(6, 21, 36, 0.76) 50%, rgba(6, 21, 36, 0.26) 100%);
  --hero-overlay-mobile: linear-gradient(0deg, rgba(4, 13, 24, 0.96) 0%, rgba(6, 21, 36, 0.78) 58%, rgba(6, 21, 36, 0.36) 100%);
  --tomorrow-overlay: linear-gradient(0deg, rgba(4, 13, 24, 0.95) 0%, rgba(6, 21, 36, 0.56) 72%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 122, 26, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--text);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.narrow {
  width: min(860px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 10px 28px;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  width: 158px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

html[data-theme="night"] .brand {
  padding: 0;
  background: transparent;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex: 1;
  gap: 18px;
  font-size: 14px;
}

.main-nav a,
.footer-inner a {
  color: var(--muted);
  text-decoration: none;
}

.site-header .main-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.main-nav a:hover,
.footer-inner a:hover {
  color: var(--deep);
}

.site-header .main-nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.language-switcher span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.language-select {
  min-width: 116px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  min-height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--card);
  cursor: pointer;
}

.fa-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: currentColor;
}

.fa-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.26);
}

.button-secondary {
  color: var(--deep);
  background: var(--card);
  border-color: var(--line);
}

html[data-theme="night"] .button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

html[data-theme="night"] .product-topline h3,
html[data-theme="night"] .reward-card h3,
html[data-theme="night"] .partner-grid h3,
html[data-theme="night"] .trust-grid h3,
html[data-theme="night"] .product-topline span,
html[data-theme="night"] .reward-price,
html[data-theme="night"] .form-panel label,
html[data-theme="night"] .terms-grid strong,
html[data-theme="night"] .founder-contribution h3,
html[data-theme="night"] .faq-list summary,
html[data-theme="night"] .mobile-cta a:last-child {
  color: var(--text);
}

.hero-section .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.hero-section .button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-section {
  position: relative;
  min-height: calc(100svh - 72px);
  color: white;
  overflow: hidden;
  background: var(--deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    var(--hero-overlay),
    url("/assets/investors/famylio_ambience_0003.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.5fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: 54px 0 30px;
}

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

.hero-logo {
  width: min(248px, 58vw);
  height: auto;
  margin: 0 0 22px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.22));
}

.kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: 52px;
  line-height: 1.04;
  font-weight: 900;
}

.hero-subtitle {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.9);
}

.hero-proof {
  max-width: 660px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.beta-strip {
  display: inline-flex;
  max-width: 660px;
  margin: 16px 0 0;
  padding: 11px 14px;
  color: #fff;
  background: rgba(7, 43, 77, 0.72);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.proof-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 18px 0 22px;
  list-style: none;
}

.proof-badges li {
  min-height: 62px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.proof-badges span,
.proof-badges strong {
  display: block;
}

.proof-badges span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.proof-badges strong {
  color: white;
  margin-top: 4px;
}

.hero-side {
  align-self: end;
  margin-bottom: 18px;
}

.progress-panel,
.form-panel,
.partner-grid article,
.product-card,
.reward-card,
.trust-grid article,
.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.progress-panel {
  padding: 24px;
  color: var(--text);
}

.progress-panel.is-compact {
  background: color-mix(in srgb, var(--card) 92%, transparent);
  backdrop-filter: blur(12px);
}

.progress-main strong {
  display: block;
  color: var(--deep);
  font-size: 34px;
  line-height: 1.1;
}

html[data-theme="night"] .progress-main strong {
  color: var(--text);
}

.progress-main span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.progress-bar {
  height: 12px;
  margin: 22px 0 18px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 20%, transparent);
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  transition: width 600ms ease;
}

.progress-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 20px;
}

.progress-stats div {
  padding: 10px;
  border-radius: 8px;
  background: var(--soft);
}

.progress-stats dt {
  color: var(--muted);
  font-size: 12px;
}

.progress-stats dd {
  margin: 2px 0 0;
  font-weight: 900;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--soft);
}

.section-contrast {
  color: white;
  background: var(--deep);
}

.section-contrast .kicker,
.section-contrast .eyebrow {
  color: #8ce3e7;
}

.section-contrast p {
  color: rgba(255, 255, 255, 0.78);
}

.two-column,
.progress-layout,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.section h2 {
  margin: 0;
  max-width: 780px;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 900;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
}

.large-copy {
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.feature-grid,
.trust-grid,
.usage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 128px;
  padding: 18px;
  box-shadow: none;
}

.feature-card span {
  color: var(--muted);
  font-weight: 900;
}

.feature-card h3 {
  margin: 26px 0 0;
  font-size: 19px;
}

.activation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: 46px;
  align-items: center;
}

.activation-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 32, 51, 0.12);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.activation-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.333;
  object-fit: cover;
}

.activation-media figcaption {
  padding: 14px 16px;
  color: var(--deep);
  background: var(--card);
  font-size: 14px;
  font-weight: 900;
}

.activation-copy {
  max-width: 590px;
}

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

.activation-list li {
  position: relative;
  padding: 12px 14px 12px 34px;
  border: 1px solid rgba(22, 32, 51, 0.1);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--card) 82%, transparent);
  color: var(--text);
  font-weight: 850;
}

.activation-list li::before {
  position: absolute;
  top: 20px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.accent-1 {
  border-top: 5px solid var(--orange);
}

.accent-2 {
  border-top: 5px solid var(--teal);
}

.accent-3 {
  border-top: 5px solid var(--green);
}

.accent-4 {
  border-top: 5px solid var(--violet);
}

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

.product-card {
  overflow: hidden;
  color: var(--text);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  background: var(--cream);
}

.product-body {
  padding: 18px;
}

.product-topline {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
}

.product-topline h3,
.reward-card h3,
.partner-grid h3,
.trust-grid h3 {
  margin: 0;
  color: var(--deep);
  font-size: 20px;
}

.product-topline span,
.reward-price {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--cream);
  font-size: 12px;
  font-weight: 900;
}

.mini-bar {
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 20%, transparent);
}

.mini-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.step-list li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: white;
  background: var(--navy);
}

.fund-usage {
  padding-top: 10px;
}

.usage-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.usage-grid span {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  font-weight: 800;
}

.reward-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.reward-card {
  min-height: 220px;
  padding: 18px;
  box-shadow: none;
}

.reward-card h3 {
  margin-top: 18px;
}

.reward-card p,
.product-card p,
.partner-grid p,
.trust-grid p {
  color: var(--muted);
}

.reward-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--orange);
  font-weight: 900;
  text-decoration: none;
}

.tomorrow-section {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
  background: var(--deep);
}

.tomorrow-media {
  position: absolute;
  inset: 0;
  background:
    var(--tomorrow-overlay),
    url("/assets/marketing/ylio_iot_lights_off_5s.gif") center / cover no-repeat;
}

.tomorrow-content {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.tomorrow-content h2 {
  max-width: 760px;
}

.tomorrow-content p:not(.kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 24px;
}

.form-layout {
  align-items: stretch;
}

.form-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  box-shadow: none;
}

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

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--field);
  color: var(--text);
  font-weight: 500;
}

.form-panel textarea {
  resize: vertical;
}

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

.check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 600 !important;
}

.check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.partner-section {
  background: var(--cream);
}

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

.partner-grid article {
  padding: 28px;
  box-shadow: none;
}

.investment-terms {
  background: var(--warm);
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.terms-grid article,
.founder-contribution {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.terms-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.terms-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--deep);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 900;
}

.terms-grid p,
.founder-contribution p,
.legal-note {
  color: var(--muted);
}

.founder-contribution {
  margin-top: 18px;
  border-left: 5px solid var(--orange);
}

.founder-contribution h3 {
  margin: 0 0 8px;
  color: var(--deep);
  font-size: 24px;
}

.legal-note {
  max-width: 940px;
  margin: 18px 0 0;
  font-size: 14px;
}

.beta-section {
  background: var(--soft);
}

.ethics-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ethics-list li {
  margin-bottom: 9px;
  padding-left: 22px;
  position: relative;
  color: var(--muted);
}

.ethics-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  min-height: 140px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.timeline span {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--orange);
}

.trust-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-grid article {
  padding: 18px;
  box-shadow: none;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.faq-list summary {
  padding: 18px;
  cursor: pointer;
  color: var(--deep);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.final-cta {
  color: white;
  text-align: center;
  background: var(--navy);
}

.final-cta h2,
.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

.final-logo {
  width: min(230px, 62vw);
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.18));
}

.final-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.site-footer {
  padding: 28px 0 90px;
  color: var(--muted);
  background: var(--warm);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: 14px;
}

.loading {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.seo-shell {
  width: min(900px, calc(100% - 40px));
  padding: 72px 0;
  color: var(--text);
}

.seo-shell h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: var(--deep);
  font-size: clamp(34px, 6vw, 58px);
  line-height: 0.96;
}

.seo-shell p,
.seo-shell li {
  font-size: 18px;
}

.seo-shell a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 12px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }

  .site-header {
    justify-content: space-between;
  }

  .product-grid,
  .reward-grid,
  .trust-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-side {
    align-self: auto;
    max-width: 520px;
  }
}

@media (max-width: 900px) {
  .hero-copy h1 {
  font-size: 40px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .section h2 {
    font-size: 38px;
  }

  .two-column,
  .activation-layout,
  .progress-layout,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-grid,
  .terms-grid,
  .usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 116px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switcher {
    max-width: 132px;
    padding: 0 8px;
  }

  .language-switcher span {
    display: none;
  }

  .language-select {
    min-width: 82px;
  }

  .header-actions .button {
    display: none;
  }

  .layout,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .hero-section,
  .hero-content {
    min-height: auto;
  }

  .hero-bg {
    background:
      var(--hero-overlay-mobile),
      url("/assets/investors/famylio_ambience_0003.png") center top / cover no-repeat;
  }

  .hero-content {
    padding: 160px 0 42px;
    gap: 26px;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-subtitle,
  .large-copy,
  .tomorrow-content p:not(.kicker) {
    font-size: 18px;
  }

  .activation-media img {
    aspect-ratio: 1.2;
  }

  .button-row {
    align-items: stretch;
  }

  .button-row .button {
    width: 100%;
  }

  .proof-badges,
  .product-grid,
  .reward-grid,
  .feature-grid,
  .terms-grid,
  .trust-grid,
  .timeline,
  .partner-grid,
  .progress-stats,
  .usage-grid {
    grid-template-columns: 1fr;
  }

  .reward-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .reward-card {
    min-width: 82%;
    scroll-snap-align: start;
  }

  .section {
    padding: 68px 0;
  }

  .section h2 {
    font-size: 32px;
  }

  .form-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .tomorrow-section {
    min-height: 640px;
  }

  .footer-inner {
    display: block;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(22, 32, 51, 0.14);
    border-radius: 999px;
    background: color-mix(in srgb, var(--card) 94%, transparent);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-cta a:first-child {
    color: white;
    background: var(--orange);
  }

  .mobile-cta a:last-child {
    color: var(--deep);
    background: var(--cream);
  }
}

@media (max-width: 380px) {
  .hero-content {
    padding-top: 148px;
  }

  .hero-copy h1 {
    font-size: 31px;
  }

  .button {
    padding: 0 16px;
  }

  .progress-panel {
    padding: 18px;
  }
}

@media (min-width: 1440px) {
  .layout {
    width: min(1260px, calc(100% - 64px));
  }

  .hero-copy h1 {
    font-size: 56px;
  }
}

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