/* SMARTFOOD Landing v2 */

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito Sans';
  src: url('./fonts/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050b18;
  --bg-soft: #0b1426;
  --surface: rgba(18, 28, 45, 0.6);
  --surface-strong: rgba(21, 32, 52, 0.85);
  --stroke: rgba(255, 255, 255, 0.08);
  --muted: #94a3b8;
  --muted-strong: #cbd5f5;
  --accent: #f7b733;
  --accent-strong: #ffcf5c;
  --success: #7dd3a7;
  --white: #f8fbff;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 24px 60px rgba(5, 11, 24, 0.45);
  --shadow-hover: 0 30px 80px rgba(5, 11, 24, 0.6);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(247, 183, 51, 0.08) 0%, transparent 46%),
    linear-gradient(180deg, var(--bg) 0%, #020409 100%);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.2;
  margin: 16px 0 12px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-soft {
  background: rgba(247, 183, 51, 0.1);
  color: var(--accent-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(5, 11, 24, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 28px;
}

.logo img {
  /* height: 70px; */
  width: 100px;
}

.nav {
  display: flex;
  gap: 26px;
  font-size: 15px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover,
.nav a:focus {
  color: var(--white);
}

.nav a:hover::after,
.nav a:focus::after {
  transform: scaleX(1);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #1b1204;
  box-shadow: 0 16px 30px rgba(247, 183, 51, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(247, 183, 51, 0.36);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  color: var(--white);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--white);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-primary,
.btn-outline,
.btn-ghost {
  min-width: 160px;
}

.hero {
  padding: 132px 0 110px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 68px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(38px, 6vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

.hero-lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 56ch;
}

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

.hero-selector {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 14, 26, 0.6);
  box-shadow: var(--shadow-soft);
  max-width: 520px;
}

.selector-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-strong);
}

.selector-options {
  display: grid;
  gap: 12px;
}

.selector-option {
  position: relative;
  display: block;
}

.selector-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.selector-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(12, 19, 34, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.selector-option input:checked + .selector-pill {
  border-color: rgba(247, 183, 51, 0.5);
  box-shadow: 0 18px 32px rgba(247, 183, 51, 0.18);
  transform: translateY(-2px);
}

.selector-option input:focus-visible + .selector-pill {
  outline: 2px solid rgba(247, 183, 51, 0.6);
  outline-offset: 3px;
}

.selector-pill strong {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.selector-pill small {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.selector-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(247, 183, 51, 0.18);
  font-size: 20px;
}

.selector-option:nth-of-type(2) .selector-icon {
  background: rgba(125, 211, 167, 0.2);
}

.selector-hint {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.stat {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(18, 28, 45, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 6px;
}

.stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 600;
}

.stat-label {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 22px;
  justify-items: flex-start;
}

.hero-glow {
  position: absolute;
  inset: 10% -30% 15% -18%;
  background: radial-gradient(circle, rgba(247, 183, 51, 0.14) 0%, transparent 70%);
  filter: blur(12px);
  z-index: 0;
}

.surface {
  position: relative;
  z-index: 1;
  background: var(--surface-strong);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.hero-card {
  display: grid;
  gap: 12px;
  width: min(320px, 100%);
  font-family: 'Nunito Sans', 'Inter', sans-serif;
}

.hero-card strong {
  font-size: 22px;
  font-weight: 700;
}

.hero-card__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-card__emphasis {
  display: flex;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-strong);
}

.chip-success {
  background: rgba(125, 211, 167, 0.18);
  color: var(--success);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.channel-pill-stack {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 20px 24px;
  width: min(280px, 90%);
  border-radius: var(--radius-lg);
  background: rgba(9, 16, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}

.channel-pill-stack li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.channel-pill__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
}

.channel-pill__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero-illustration {
  position: relative;
  z-index: 1;
  width: clamp(240px, 90%, 360px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.hero-illustrations {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(440px, 100%);
}

.hero-figure {
  margin: 0;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(9, 16, 28, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.hero-figure img {
  width: 100%;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-figure figcaption {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.hero-figure--solidarity {
  transform: translateY(18px);
}

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

.feature-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(9, 15, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(247, 183, 51, 0.12);
  display: grid;
  place-items: center;
  font-size: 24px;
}

.feature-card h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.step-card {
  position: relative;
  padding: 32px 26px 28px;
  border-radius: var(--radius-md);
  background: rgba(8, 14, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 220px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}

.step-index {
  position: absolute;
  top: 0;
  left: 24px;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #1f1503;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.step-card h3 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  font-size: 18px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.channels {
  background: rgba(4, 8, 17, 0.6);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.channel-card {
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 28px 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  background: rgba(10, 16, 29, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.channel-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.channel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 183, 51, 0.4);
  box-shadow: var(--shadow-hover);
}

.channels-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
}

.impact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
}

.impact-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(9, 16, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 22px;
  box-shadow: var(--shadow-soft);
}

.impact-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 4vw, 38px);
  margin: 0;
}

.impact-list {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.6;
  display: grid;
  gap: 10px;
}

.impact-card.highlight {
  background: linear-gradient(180deg, rgba(10, 18, 35, 0.9) 0%, rgba(15, 26, 46, 0.9) 100%);
}

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

.impact-stats > div {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 10, 21, 0.7);
  display: grid;
  gap: 6px;
}

.impact-card .stat-value {
  font-size: 28px;
}

.impact-card .stat-label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.impact-caption {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.impact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-card {
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 16, 28, 0.7);
  display: grid;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.contact-card .badge {
  align-self: flex-start;
}

.contact-copy h2 {
  margin: 12px 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 4vw, 38px);
}

.contact-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(4, 7, 14, 0.8);
  padding: 42px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: start;
}

.footer-brand img {
  /* height: 48px; */
  width: 70px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 40ch;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.footer-links h4 {
  margin: 0 0 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

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

.socials {
  display: flex;
  gap: 12px;
}

.socials img {
  width: 28px;
  height: 28px;
}

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

.testimonials {
  background: rgba(6, 12, 24, 0.6);
}

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

.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-md);
  background: rgba(11, 18, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 24px;
}

.testimonial-quote {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-strong);
  font-family: 'Nunito Sans', 'Inter', sans-serif;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(247, 183, 51, 0.14);
  color: var(--accent-strong);
  font-weight: 700;
  display: grid;
  place-items: center;
  letter-spacing: 0.04em;
}

.testimonial-meta strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 14px;
}

.apps {
  background: rgba(5, 10, 22, 0.68);
}

.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
}

.app-copy {
  display: grid;
  gap: 18px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(10, 18, 35, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: var(--white);
  min-width: 190px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.btn-store small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn-store strong {
  display: block;
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
}

.btn-store__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(247, 183, 51, 0.16);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.btn-store:hover,
.btn-store:focus {
  transform: translateY(-4px);
  border-color: rgba(247, 183, 51, 0.36);
  box-shadow: var(--shadow-hover);
}

.app-devices {
  display: grid;
  justify-items: center;
}

.device-card {
  width: min(340px, 100%);
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(12, 19, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 18px;
}

.device-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.device-screen {
  background: linear-gradient(180deg, rgba(7, 12, 26, 0.9) 0%, rgba(5, 10, 21, 0.9) 100%);
  border-radius: 18px;
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 12px;
}

.device-bubble {
  height: 38px;
  border-radius: 12px;
  opacity: 0.85;
}

.device-bubble--primary {
  background: linear-gradient(120deg, rgba(247, 183, 51, 0.85), rgba(255, 207, 92, 0.85));
}

.device-bubble--secondary {
  background: rgba(125, 211, 167, 0.35);
}

.device-bubble--accent {
  background: rgba(148, 163, 184, 0.22);
}

.device-caption {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

/* Animations */

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.in-view {
  opacity: 1;
  transform: none;
}

/* Responsive */

@media (max-width: 1100px) {
  .hero-layout {
    gap: 48px;
  }

  .hero-stats,
  .impact-stats,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-actions {
    order: 3;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-copy,
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    justify-items: center;
  }

  .hero-card,
  .channel-pill-stack {
    width: min(340px, 100%);
  }

  .feature-grid,
  .steps-grid,
  .impact-layout,
  .app-layout,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

  .container {
    padding: 0 20px;
  }

  .hero-stats,
  .impact-stats,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 36px;
  }
}

@media (max-width: 560px) {
  .btn-primary,
  .btn-outline,
  .btn-ghost {
    min-width: 0;
    width: 100%;
  }

  .hero-actions,
  .impact-actions,
  .contact-actions {
    width: 100%;
  }

  .nav {
    gap: 16px;
  }

  .badge {
    font-size: 12px;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 42px);
  }

  .hero-illustration {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links {
    justify-items: center;
  }
}