/* Green Cleaner — official site */
:root {
  --forest: #0b6b3a;
  --leaf: #38a169;
  --sun: #f4c95d;
  --mist: #e7f3ee;
  --paper: #f7faf7;
  --ink: #15231a;
  --muted: #64736a;
  --coral: #d4574c;
  --glow: rgba(56, 161, 105, 0.35);
  --card: rgba(255, 255, 255, 0.78);
  --stroke: rgba(11, 107, 58, 0.14);
  --shadow: 0 18px 50px rgba(21, 35, 26, 0.12);
  --radius: 22px;
  --nav-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --lh: 1.5;
  --fs: 15px;
  --fs-sm: 13px;
  --fs-lg: 18px;
  --fs-xl: clamp(1.55rem, 2.4vw, 2.15rem);
  --fs-hero: clamp(1.85rem, 3.2vw, 2.75rem);
  --max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  height: 100%;
}

@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 {
  margin: 0;
  min-height: 100%;
  font-family: "Sora", "Noto Sans", "Noto Sans JP", "Noto Sans KR", "Noto Sans TC",
    "Noto Sans Arabic", "Noto Sans Devanagari", system-ui, sans-serif;
  font-size: var(--fs);
  line-height: var(--lh);
  color: var(--ink);
  background: var(--paper);
  text-align: center;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.rtl {
  direction: rtl;
}

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

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

button,
select {
  font: inherit;
}

/* Ambient canvas */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(56, 161, 105, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 40%, rgba(244, 201, 93, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 70%, rgba(11, 107, 58, 0.12), transparent 50%),
    linear-gradient(180deg, #f3faf5 0%, #eef6f1 45%, #f7faf7 100%);
}

.bg-stage::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: url("../assets/fern.webp");
  background-size: cover;
  opacity: 0.07;
  animation: drift 28s ease-in-out infinite alternate;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: float 12s var(--ease) infinite;
}

.orb-a {
  width: 280px;
  height: 280px;
  background: var(--leaf);
  top: 12%;
  left: 8%;
}

.orb-b {
  width: 220px;
  height: 220px;
  background: var(--sun);
  bottom: 18%;
  right: 10%;
  animation-delay: -4s;
}

.orb-c {
  width: 160px;
  height: 160px;
  background: var(--forest);
  top: 55%;
  left: 45%;
  animation-delay: -7s;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, -30px, 0) scale(1.08);
  }
}

@keyframes drift {
  from {
    transform: scale(1.05) translateY(0);
  }
  to {
    transform: scale(1.12) translateY(-3%);
  }
}

/* Shell */
.site {
  position: relative;
  z-index: 1;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  backdrop-filter: blur(16px);
  background: rgba(247, 250, 247, 0.72);
  border-bottom: 1px solid var(--stroke);
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 8px 28px rgba(21, 35, 26, 0.08);
  background: rgba(247, 250, 247, 0.9);
}

.nav-inner {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  font-weight: 650;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 6px 16px var(--glow);
  transition: transform 0.4s var(--ease);
}

.brand:hover img {
  transform: rotate(-8deg) scale(1.06);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: var(--fs-sm);
  color: var(--muted);
  transition: color 0.25s, background 0.25s, transform 0.25s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--forest);
  background: var(--mist);
  transform: translateY(-1px);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.lang-wrap {
  position: relative;
}

.lang-select {
  appearance: none;
  border: 1px solid var(--stroke);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364736A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  padding: 8px 28px 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: var(--fs-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.lang-select:hover,
.lang-select:focus-visible {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.18);
  outline: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.2;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s,
    color 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.35) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  color: #fff;
  box-shadow: 0 12px 28px rgba(11, 107, 58, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(11, 107, 58, 0.36);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--stroke);
  color: var(--forest);
}

.btn-ghost:hover {
  background: #fff;
  border-color: var(--leaf);
}

.btn-sun {
  background: linear-gradient(135deg, #f7d77a, var(--sun));
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(244, 201, 93, 0.4);
}

/* Sections — one screen each */
.panel {
  min-height: 100vh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 28px) 20px 56px;
  position: relative;
  isolation: isolate;
}

.panel-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.5vh, 28px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--stroke);
  color: var(--forest);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 0 rgba(56, 161, 105, 0.5);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 161, 105, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(56, 161, 105, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(56, 161, 105, 0);
  }
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h1 {
  font-size: var(--fs-hero);
  max-width: 18ch;
}

h2 {
  font-size: var(--fs-xl);
  max-width: 28ch;
}

.lede {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: var(--fs);
  line-height: var(--lh);
}

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

/* Hero */
.hero-visual {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: translateZ(0);
}

.hero-visual img.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}

.panel.is-active .hero-visual img.hero-photo {
  transform: scale(1);
}

.hero-visual .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 107, 58, 0.15), rgba(21, 35, 26, 0.45));
}

.hero-badge {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 16px;
  background: rgba(247, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  font-size: var(--fs-sm);
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.scan-ring {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--leaf);
  border-top-color: transparent;
  animation: spin 1.1s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.logo-float {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 16px 40px var(--glow);
  animation: bob 4.5s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 720px);
}

.trust-pill {
  padding: 12px 10px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--stroke);
  font-size: var(--fs-sm);
  color: var(--ink);
  backdrop-filter: blur(8px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.trust-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(56, 161, 105, 0.35);
}

.trust-pill strong {
  display: block;
  color: var(--forest);
  font-size: 12px;
  margin-bottom: 2px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.panel.is-active .reveal {
  opacity: 1;
  transform: translateY(0);
}

.panel.is-active .reveal:nth-child(1) {
  transition-delay: 0.05s;
}
.panel.is-active .reveal:nth-child(2) {
  transition-delay: 0.12s;
}
.panel.is-active .reveal:nth-child(3) {
  transition-delay: 0.18s;
}
.panel.is-active .reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.panel.is-active .reveal:nth-child(5) {
  transition-delay: 0.3s;
}
.panel.is-active .reveal:nth-child(6) {
  transition-delay: 0.36s;
}

/* Feature grids */
.grid-3,
.grid-2,
.grid-6 {
  display: grid;
  gap: clamp(12px, 1.8vw, 18px);
  width: 100%;
}

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

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

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

.card {
  position: relative;
  padding: clamp(16px, 2vw, 22px);
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  overflow: hidden;
  min-height: 0;
}

.card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--sun));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(56, 161, 105, 0.35);
}

.card:hover::before {
  transform: scaleX(1);
}

.card .icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--mist), #fff);
  border: 1px solid var(--stroke);
  font-size: 20px;
  transition: transform 0.45s var(--ease);
}

.card:hover .icon {
  transform: rotate(-8deg) scale(1.08);
}

.card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: var(--lh);
}

.privacy-hero-card {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
  text-align: center;
}

.privacy-copy {
  padding: clamp(20px, 3vw, 32px);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(11, 107, 58, 0.92), rgba(56, 161, 105, 0.88));
  color: #f4fbf6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.privacy-copy::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -40px;
  top: -40px;
  background: rgba(244, 201, 93, 0.25);
  filter: blur(2px);
  animation: float 10s ease-in-out infinite;
}

.privacy-copy h2,
.privacy-copy p {
  position: relative;
  z-index: 1;
  color: inherit;
  max-width: 32ch;
}

.privacy-copy p {
  opacity: 0.92;
}

.privacy-side {
  display: grid;
  gap: 12px;
}

.stat {
  padding: 18px 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--stroke);
  transition: transform 0.35s var(--ease);
}

.stat:hover {
  transform: scale(1.03);
}

.stat .num {
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
}

.stat .label {
  font-size: var(--fs-sm);
  color: var(--muted);
}

/* Tools panel with media */
.tool-stage {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tool-card {
  min-height: 220px;
  padding: 22px 16px;
  border-radius: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  cursor: default;
}

.tool-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 22px 50px rgba(21, 35, 26, 0.22);
}

.tool-card .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 0.8s var(--ease);
  z-index: 0;
}

.tool-card:hover .bg {
  transform: scale(1);
}

.tool-card .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 107, 58, 0.25), rgba(15, 23, 18, 0.78));
  z-index: 1;
}

.tool-card > *:not(.bg):not(.shade) {
  position: relative;
  z-index: 2;
}

.tool-a .bg {
  background-image: url("../assets/hero.webp");
}
.tool-b .bg {
  background-image: url("../assets/forest.webp");
}
.tool-c .bg {
  background-image: linear-gradient(145deg, #13542f, #0b6b3a 40%, #1a3d2a);
}

.tool-card h3 {
  font-size: 16px;
}

.tool-card p {
  margin: 0;
  font-size: var(--fs-sm);
  opacity: 0.92;
  max-width: 24ch;
  line-height: var(--lh);
}

.chip {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Control steps */
.steps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  counter-reset: step;
}

.step {
  padding: 18px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--stroke);
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 161, 105, 0.4);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--leaf);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.step h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.step p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: var(--lh);
}

/* Closing */
.closing {
  width: 100%;
  padding: clamp(28px, 4vw, 40px) 20px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(11, 107, 58, 0.94), rgba(19, 84, 47, 0.9)),
    url("../assets/forest.webp");
  background-size: cover;
  background-blend-mode: multiply;
  color: #f4fbf6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(244, 201, 93, 0.28);
  top: -80px;
  left: -40px;
  animation: float 9s ease-in-out infinite;
}

.closing > * {
  position: relative;
  z-index: 1;
}

.closing .lede {
  color: rgba(244, 251, 246, 0.88);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.footer-meta a {
  color: var(--forest);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}

.footer-meta a:hover {
  border-color: var(--forest);
}

.version-tag {
  font-size: 12px;
  color: var(--muted);
}

/* Dots */
.dots {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.rtl .dots {
  right: auto;
  left: 16px;
}

.dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: rgba(11, 107, 58, 0.25);
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.dots button[aria-current="true"] {
  background: var(--forest);
  transform: scale(1.35);
  box-shadow: 0 0 0 4px rgba(56, 161, 105, 0.2);
}

.dots button:hover {
  background: var(--leaf);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
  pointer-events: none;
}

.scroll-hint .chev {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--leaf);
  border-bottom: 2px solid var(--leaf);
  transform: rotate(45deg);
  animation: chev 1.4s ease-in-out infinite;
}

@keyframes chev {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(-4px) rotate(45deg);
  }
  50% {
    opacity: 1;
    transform: translateY(2px) rotate(45deg);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .grid-6,
  .grid-3,
  .tool-stage,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .nav-links {
    display: none;
  }

  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .dots {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --fs: 14px;
    --fs-sm: 12.5px;
    --nav-h: 58px;
  }

  .panel {
    padding: calc(var(--nav-h) + 18px) 14px 48px;
    align-items: flex-start;
  }

  .trust-row,
  .grid-6,
  .grid-3,
  .grid-2,
  .tool-stage,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .steps .step:nth-child(n + 3),
  .tool-stage .tool-card:last-child {
    grid-column: 1 / -1;
  }

  .brand span {
    display: none;
  }

  .hero-visual {
    aspect-ratio: 4 / 3;
  }

  .btn {
    min-height: 42px;
    padding: 0 14px;
  }

  h1 {
    max-width: 16ch;
  }
}

@media (max-height: 760px) {
  .panel {
    min-height: auto;
    scroll-snap-align: start;
    padding-top: calc(var(--nav-h) + 16px);
    padding-bottom: 36px;
  }

  .logo-float {
    width: 56px;
    height: 56px;
  }

  .hero-visual {
    max-height: 28vh;
  }

  .card {
    padding: 14px;
  }

  .tool-card {
    min-height: 170px;
  }
}

@media (max-width: 420px) {
  .trust-row {
    grid-template-columns: 1fr;
  }
}
