/* Nothing Do site styles. Palette mirrors TinyTheme.swift */
:root {
  --red: #d71921;
  --ink: #030303;
  --chalk: #edebe6;
  --smoke: #858585;
  --fog: #3d3d3d;
  --panel: #121212;
  --line: rgba(237, 235, 230, 0.1);
  --radius: 20px;
  --content-max: 1060px;
  --content-pad: 24px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-soft: cubic-bezier(0.25, 1, 0.5, 1);
  --duration-fast: 140ms;
  --duration-ui: 220ms;
  --duration-enter: 480ms;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: transparent;
  color: var(--chalk);
  font-family: "Space Grotesk", -apple-system, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* animated dot-matrix wave backdrop (dot-wave.js) */
.dot-wave-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* static fallback when prefers-reduced-motion */
body.dot-wave-static {
  background-image: radial-gradient(rgba(237, 235, 230, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
}

.mono {
  font-family: "Space Mono", "SF Mono", Menlo, monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

a { color: inherit; }

/* ---------- pill glass nav ---------- */
.nav-wrap {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  overflow: visible;
}

body.nav-menu-open {
  overflow: hidden;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.55);
  border: 1px solid rgba(237, 235, 230, 0.14);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(237, 235, 230, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.nav-logo img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

.nav a.pill {
  text-decoration: none;
  font-size: 13px;
  color: var(--smoke);
  padding: 8px 16px;
  border-radius: 999px;
  transition: color var(--duration-ui) var(--ease-out), background var(--duration-ui) var(--ease-out);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(237, 235, 230, 0.06);
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--chalk);
  border-radius: 1px;
  transition: transform var(--duration-ui) var(--ease-out), opacity var(--duration-fast) var(--ease-out);
}

.nav.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.nav a.pill:hover { color: var(--chalk); background: rgba(237, 235, 230, 0.08); }
.nav a.pill.active { color: var(--chalk); background: rgba(237, 235, 230, 0.12); }

.nav-menu a.cta {
  margin-left: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--chalk);
  background: var(--red);
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: filter var(--duration-ui) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}
.nav a.cta:hover { filter: brightness(1.15); }
.nav a.cta:active { transform: scale(0.97); }

/* ---------- layout ---------- */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

main.container { padding-top: 168px; }

/* ---------- hero ---------- */
.hero { text-align: center; padding: 96px 0 72px; }

@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow,
  .hero h1,
  .hero p.sub,
  .hero .actions {
    animation: hero-enter var(--duration-enter) var(--ease-out) both;
  }

  .hero h1 { animation-delay: 70ms; }
  .hero p.sub { animation-delay: 140ms; }
  .hero .actions { animation-delay: 210ms; }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .eyebrow {
  font-size: 12px;
  color: var(--red);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(44px, 8vw, 88px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero h1 .red { color: var(--red); }

.hero p.sub {
  max-width: 560px;
  margin: 28px auto 0;
  color: var(--smoke);
  font-size: 18px;
}

.hero .actions {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    transform var(--duration-fast) var(--ease-out),
    filter var(--duration-ui) var(--ease-out),
    background var(--duration-ui) var(--ease-out);
}

button.btn { color: inherit; }

@media (hover: hover) {
  .btn:hover { transform: translateY(-1px); }
}

.btn:active { transform: translateY(0) scale(0.97); }
.btn-red { background: var(--red); color: var(--chalk); }
.btn-red:hover { filter: brightness(1.12); }
.btn-ghost {
  color: var(--chalk);
  border: 1px solid rgba(237, 235, 230, 0.25);
  background: rgba(237, 235, 230, 0.04);
}
.btn-ghost:hover { background: rgba(237, 235, 230, 0.09); }

/* ---------- marketing pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 72px;
}

.pillar {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
}

.pillar-label {
  font-size: 11px;
  color: var(--red);
  margin-bottom: 14px;
}

.pillar h2 {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.pillar p {
  color: var(--smoke);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ---------- app preview (real screenshots) ---------- */
.preview-section {
  padding-bottom: 88px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.preview-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.preview-head h2 {
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 14px;
}

.preview-head h2 .red { color: var(--red); }

.preview-lead {
  color: var(--smoke);
  font-size: 16px;
  line-height: 1.6;
}

.preview-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  outline: none;
}

.device-frame {
  width: min(270px, 68vw);
  aspect-ratio: 390 / 844;
  padding: 8px;
  border-radius: 40px;
  border: 1px solid rgba(237, 235, 230, 0.16);
  background: #0a0a0a;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  flex-shrink: 0;
  position: relative;
}

.device-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 20px;
  border-radius: 999px;
  background: #000;
  border: 1px solid rgba(237, 235, 230, 0.08);
  z-index: 2;
  pointer-events: none;
}

.device-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 32px;
  display: block;
  transition: opacity var(--duration-ui) var(--ease-out);
}

.device-frame img.is-fading {
  opacity: 0;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(237, 235, 230, 0.2);
  background: rgba(237, 235, 230, 0.05);
  color: var(--chalk);
  font-size: 17px;
  cursor: pointer;
  transition: background var(--duration-ui) var(--ease-out), transform var(--duration-fast) var(--ease-out);
  font-family: inherit;
  flex-shrink: 0;
}

@media (hover: hover) {
  .carousel-btn:hover { background: rgba(237, 235, 230, 0.12); }
}

.carousel-btn:active { transform: scale(0.94); }

.preview-caption {
  margin-top: 22px;
  text-align: center;
  color: var(--chalk);
  font-size: 14.5px;
  min-height: 22px;
  transition: opacity var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.preview-caption.is-changing {
  opacity: 0;
  transform: translateY(4px);
}

.preview-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.preview-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--fog);
  cursor: pointer;
  padding: 0;
  transition: background var(--duration-ui) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.preview-dots button.active {
  background: var(--red);
  transform: scale(1.25);
}

/* ---------- support contact form ---------- */
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin: 0 0 64px;
  text-align: left;
}
.contact-form h3 { font-size: 19px; margin-bottom: 6px; }
.contact-form .form-note { color: var(--smoke); font-size: 13.5px; margin-bottom: 24px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 11px;
  color: var(--smoke);
  margin-bottom: 7px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid rgba(237, 235, 230, 0.16);
  border-radius: 12px;
  color: var(--chalk);
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus { border-color: var(--red); }

.form-field textarea { resize: vertical; min-height: 120px; }

.custom-select { position: relative; }

.custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  background: #0a0a0a;
  border: 1px solid rgba(237, 235, 230, 0.16);
  border-radius: 12px;
  color: var(--chalk);
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.custom-select__trigger:hover {
  border-color: rgba(237, 235, 230, 0.28);
}

.custom-select.is-open .custom-select__trigger,
.custom-select__trigger:focus-visible {
  border-color: var(--red);
  outline: none;
}

.custom-select__value { flex: 1; min-width: 0; }

.custom-select__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--smoke);
  border-bottom: 2px solid var(--smoke);
  transform: rotate(45deg) translateY(-2px);
  flex-shrink: 0;
  transition: transform var(--duration-ui) var(--ease-out);
}

.custom-select.is-open .custom-select__chevron {
  transform: rotate(-135deg) translateY(1px);
}

.custom-select__list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #0f0f0f;
  border: 1px solid rgba(237, 235, 230, 0.16);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.custom-select__list[hidden] { display: none; }

.custom-select__option {
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14.5px;
  color: var(--chalk);
  transition: background 0.15s ease;
}

.custom-select__option:hover,
.custom-select__option:focus-visible {
  background: rgba(237, 235, 230, 0.08);
  outline: none;
}

.custom-select__option.is-selected {
  color: var(--red);
  font-weight: 600;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact-form .btn-submit {
  min-width: 168px;
  min-height: 48px;
  padding: 12px 28px;
}

.form-status { font-size: 13.5px; color: var(--smoke); }
.form-status.ok { color: #6fbf73; }
.form-status.err { color: var(--red); }
.btn[disabled] { opacity: 0.55; pointer-events: none; cursor: not-allowed; }

/* ---------- feature grid ---------- */
.section-label {
  font-size: 12px;
  color: var(--smoke);
  margin-bottom: 28px;
}
.section-label::before { content: "// "; color: var(--red); }

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

.grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color var(--duration-ui) var(--ease-out), transform var(--duration-ui) var(--ease-out);
}

@media (hover: hover) {
  .card:hover { border-color: rgba(215, 25, 33, 0.5); transform: translateY(-3px); }
}

.card h3 { font-size: 18px; margin-bottom: 10px; }
.card p { color: var(--smoke); font-size: 14.5px; }

/* ---------- download banner ---------- */
.banner {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  margin-bottom: 96px;
  border: 1px solid rgba(237, 235, 230, 0.08);
  background: var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(237, 235, 230, 0.06),
    0 28px 80px rgba(0, 0, 0, 0.45);
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(215, 25, 33, 0.28), transparent 68%),
    radial-gradient(rgba(215, 25, 33, 0.14) 1px, transparent 1px);
  background-size: auto, 20px 20px;
  pointer-events: none;
}

.banner-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  padding: 72px 48px;
  text-align: center;
}

.banner h2 {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

.banner h2 .red { color: var(--red); }

.banner-lead {
  color: var(--smoke);
  max-width: 480px;
  margin: 20px auto 0;
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

.banner-actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.banner-cta {
  padding: 16px 32px;
  font-size: 16px;
}

.footer-note {
  margin-top: 14px;
  font-size: 11px;
  color: var(--fog);
  line-height: 1.5;
}

/* ---------- doc pages ---------- */
.doc { max-width: 720px; margin: 0 auto; padding: 56px 0 96px; }
.doc .eyebrow { font-size: 12px; color: var(--red); }
.doc h1 { font-size: clamp(34px, 5vw, 52px); margin: 14px 0 6px; letter-spacing: -0.02em; }
.doc .updated { color: var(--smoke); font-size: 14px; margin-bottom: 48px; }
.doc h2 {
  font-size: 21px;
  margin: 44px 0 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.doc p { color: #b9b7b1; margin-bottom: 14px; font-size: 15.5px; }
.doc a { color: var(--red); text-decoration: none; }
.doc a:hover { text-decoration: underline; }

/* ---------- support ---------- */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 48px 0 64px;
}
.support-grid .card { text-align: left; }
.card a.link { color: var(--red); text-decoration: none; font-weight: 700; font-size: 14px; }
.card a.link:hover { text-decoration: underline; }

.faq { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); overflow: hidden; margin-bottom: 96px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: none; }
.faq summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 20px; font-family: "Space Mono", monospace; }
.faq details[open] summary::after { content: "−"; }
.faq .answer { padding: 0 26px 22px; color: var(--smoke); font-size: 14.5px; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.8);
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 56px var(--content-pad) 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand { max-width: 280px; }
.footer-brand .name { font-weight: 700; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand .name img { width: 22px; height: 22px; border-radius: 6px; display: block; }
.footer-brand p { color: var(--smoke); font-size: 13.5px; }

.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-size: 11px; color: var(--smoke); margin-bottom: 16px; }
.footer-col a { display: block; text-decoration: none; color: var(--chalk); font-size: 14px; margin-bottom: 10px; opacity: 0.85; }
.footer-col a:hover { color: var(--red); opacity: 1; }

.footer-bottom {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad) 36px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--fog);
  font-size: 12px;
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .grid,
  .grid--three { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
}

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

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-left: 0;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(12, 12, 12, 0.96);
    border: 1px solid rgba(237, 235, 230, 0.14);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    z-index: 10;
  }

  .nav.is-open .nav-menu {
    display: flex;
  }

  .nav-menu a.pill {
    padding: 12px 16px;
    font-size: 14px;
    text-align: center;
  }

  .nav-menu a.cta {
    margin-left: 0;
    margin-top: 4px;
    padding: 12px 18px;
    font-size: 14px;
    text-align: center;
  }

  .nav a.pill { padding: 8px 12px; font-size: 12.5px; }
  .nav-logo { padding: 6px 8px; }
  .hero { padding: 64px 0 56px; }
  .hero p.sub { font-size: 16.5px; }
  .banner { margin-bottom: 72px; }
  .banner-inner { padding: 56px 32px; }
  .support-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 36px; padding: 44px var(--content-pad) 32px; }
  .footer-cols { gap: 40px; }
  .preview-section { padding-bottom: 64px; margin-bottom: 16px; }
}

@media (max-width: 600px) {
  :root { --content-pad: 18px; }
  main.container { padding-top: 120px; }
  .nav-wrap { top: 12px; }
  .nav {
    gap: 6px;
    padding: 6px 8px;
  }
  .nav-logo { padding: 4px 6px 4px 4px; }
  .nav-logo .word { font-size: 13px; }
  .grid,
  .grid--three { grid-template-columns: 1fr; gap: 14px; }
  .hero { padding: 36px 0 40px; }
  .hero .eyebrow { font-size: 10px; letter-spacing: 0.12em; }
  .hero .actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .pillars { padding-bottom: 48px; margin-bottom: 48px; gap: 12px; }
  .pillar { padding: 22px 20px; }
  .preview-carousel { gap: 8px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 15px; }
  .device-frame { width: min(240px, 58vw); border-radius: 34px; }
  .device-frame img { border-radius: 28px; }
  .preview-head { margin-bottom: 28px; text-align: left; }
  .preview-lead { font-size: 15px; }
  .preview-caption { font-size: 13.5px; text-align: left; }
  .preview-dots { justify-content: flex-start; }
  .contact-form { padding: 24px 18px; }
  .contact-form .btn-submit { width: 100%; min-width: 0; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .card { padding: 24px 20px; }
  .banner { margin-bottom: 56px; }
  .banner-inner { padding: 44px 22px; text-align: left; }
  .banner-lead { margin-left: 0; margin-right: 0; font-size: 15px; }
  .banner-actions { justify-content: flex-start; margin-top: 28px; }
  .banner-cta { width: 100%; }
  .banner-actions .btn-ghost { width: 100%; }
  .doc { padding: 32px 0 64px; }
  .doc h2 { font-size: 19px; margin-top: 36px; }
  .faq summary { padding: 18px 18px; font-size: 14.5px; }
  .faq .answer { padding: 0 18px 18px; }
  .footer-cols { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 38px; }
  .carousel-btn { display: none; }
  .preview-carousel { gap: 0; }
}
