/*
============================================================
Search MCP Clean Responsive CSS
Production Reset — Static / No Animation
Purpose:
- Replace accumulated patch CSS with one stable responsive stylesheet
- No animation, no flicker, no Caddy/PHP change required
============================================================
*/

:root {
  --bg: #060b17;
  --bg-2: #0b1224;
  --bg-3: #101a33;
  --panel: rgba(255,255,255,.065);
  --panel-2: rgba(255,255,255,.095);
  --border: rgba(255,255,255,.13);
  --border-2: rgba(255,255,255,.2);
  --text: #f2f7ff;
  --text-2: #afbdd5;
  --text-3: #7584a3;
  --dark-text: #111827;
  --dark-text-2: #374151;
  --cyan: #25dfff;
  --blue: #5b8cff;
  --violet: #8b5cff;
  --pink: #ff5bd8;
  --green: #31f39d;
  --amber: #ffbf47;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --container: 1200px;
  --font: Pretendard, "Noto Sans KR", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "Fira Code", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  animation: none !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 8% 5%, rgba(37,223,255,.18), transparent 30%),
    radial-gradient(circle at 78% 8%, rgba(139,92,255,.22), transparent 34%),
    radial-gradient(circle at 54% 68%, rgba(255,91,216,.09), transparent 32%),
    linear-gradient(135deg, #06111c 0%, #0b1022 48%, #140d2c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .75;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.65) 55%, transparent 100%);
}

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

p,
li {
  color: var(--text-2);
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: break-word;
}

ul,
ol {
  padding-left: 1.35em;
}

img,
svg {
  max-width: 100%;
}

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

.skip-link {
  position: absolute;
  top: -64px;
  left: 16px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--cyan);
  color: #06111c;
  font-weight: 800;
}

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

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,10,22,.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #07111d;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 58%, var(--pink));
  box-shadow: 0 16px 45px rgba(37,223,255,.18);
}

.brand-text {
  font-size: 18px;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
}

.nav a:hover {
  background: rgba(255,255,255,.07);
  color: var(--text);
}

.nav-cta {
  color: var(--text) !important;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
}

/* shared */
.section {
  position: relative;
  padding: 104px 0;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.04));
  border: 1px solid var(--border);
  box-shadow: 0 26px 80px rgba(0,0,0,.34);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  padding: 0 14px 0 10px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(37,223,255,.075);
  border: 1px solid rgba(37,223,255,.22);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(37,223,255,.75);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  letter-spacing: -.055em;
  word-break: keep-all;
}

h1 {
  font-size: clamp(46px, 5.2vw, 74px);
  line-height: 1.08;
  font-weight: 950;
}

h1 span {
  color: transparent;
  background: linear-gradient(120deg, var(--cyan), var(--blue) 42%, var(--violet) 68%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
  font-weight: 900;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

/* hero */
.section-hero {
  padding: clamp(72px, 8vh, 96px) 0 74px;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.aurora-bg {
  position: absolute;
  inset: -18% -12%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 25%, rgba(37,223,255,.19), transparent 34%),
    radial-gradient(circle at 72% 22%, rgba(139,92,255,.23), transparent 34%),
    radial-gradient(circle at 52% 75%, rgba(255,91,216,.08), transparent 30%);
  filter: blur(28px);
  opacity: .82;
}

.aurora-bg::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(420px, .82fr);
  gap: clamp(42px, 5vw, 80px);
  align-items: center;
}

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

.hero-copy .eyebrow {
  margin-bottom: 26px;
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.78;
  color: var(--text-2);
}

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

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  border: 0;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.btn:hover {
  transform: none !important;
}

.btn-primary {
  color: #06111c;
  background: linear-gradient(120deg, var(--cyan), #65a1ff);
  box-shadow: 0 18px 50px rgba(37,223,255,.18);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-strip span,
.chip-row span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--text-2);
  background: rgba(255,255,255,.055);
  border: 1px solid var(--border);
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
}

/* hero visual */
.hero-visual {
  position: relative;
  width: min(500px, 100%);
  min-height: 440px;
  justify-self: end;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px 0 20px 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 40% 35%, rgba(37,223,255,.075), transparent 38%),
    radial-gradient(circle at 70% 64%, rgba(139,92,255,.11), transparent 40%),
    rgba(255,255,255,.018);
  border: 1px solid rgba(255,255,255,.055);
}

.orb-wrap {
  position: absolute;
  top: 4px;
  right: 46px;
  width: 315px;
  height: 315px;
}

.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(37,223,255,.18);
}

.orbit-b {
  inset: 14%;
  border-color: rgba(255,91,216,.16);
}

.orbit-a::before,
.orbit-b::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(37,223,255,.75);
}

.orbit-b::before {
  right: auto;
  left: -4px;
  background: var(--pink);
  box-shadow: 0 0 10px rgba(255,91,216,.7);
}

.data-orb {
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.92), transparent 7%),
    radial-gradient(circle at 35% 34%, rgba(37,223,255,.64), transparent 24%),
    radial-gradient(circle at 70% 60%, rgba(139,92,255,.54), transparent 34%),
    radial-gradient(circle at 40% 74%, rgba(255,91,216,.22), transparent 32%),
    rgba(9,15,34,.72);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    inset 0 0 70px rgba(37,223,255,.09),
    0 0 78px rgba(37,223,255,.12),
    0 0 120px rgba(139,92,255,.08);
}

.dashboard-card {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 360px;
  max-width: 100%;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045)),
    rgba(11,16,36,.72);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 80px rgba(0,0,0,.38);
}

.dash-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 900;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(49,243,157,.12), 0 0 12px rgba(49,243,157,.4);
}

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

.metric {
  min-width: 0;
  padding: 14px;
  border-radius: 15px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.metric-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-3);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -.03em;
  word-break: keep-all;
}

.signal-bars {
  height: 64px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.06);
}

.signal-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 4px 4px;
  opacity: .88;
  background: linear-gradient(to top, var(--violet), var(--cyan));
}

/* trust */
.section-trust {
  padding: 10px 0 84px;
}

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

.trust-item {
  min-height: 116px;
  padding: 24px 26px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border);
}

.trust-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

.trust-item span {
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.7;
}

/* section head */
.section-head {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-head .eyebrow {
  margin-bottom: 18px;
}

.section-head p {
  margin: 16px 0 0;
  font-size: 17px;
}

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

.feature-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.feature-wide {
  grid-column: span 2;
}

.feature-card::before {
  display: none;
}

.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 15px;
  color: #06111c;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.72;
}

/* flow */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}

.flow-step {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.flow-step::after {
  display: none !important;
}

.flow-step span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  color: #06111c;
  font-family: var(--mono);
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}

.flow-step strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

/* security/api */
.security-grid,
.api-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 48px;
}

.policy-list {
  display: grid;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.policy-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.policy-list div:first-child {
  padding-top: 0;
}

.policy-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-list strong {
  color: var(--cyan);
  font-size: 12.5px;
  font-weight: 900;
}

.policy-list span {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
}

.code-panel {
  display: grid;
  gap: 9px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(5,10,24,.86);
  border: 1px solid rgba(37,223,255,.16);
  box-shadow: 0 26px 80px rgba(0,0,0,.34);
}

.code-panel code {
  display: block;
  padding: 12px 14px;
  border-radius: 11px;
  color: #c9f7ff;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.065);
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

/* cta */
.cta-card {
  text-align: center;
  padding: 64px 36px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 24% 20%, rgba(37,223,255,.10), transparent 34%),
    radial-gradient(circle at 78% 78%, rgba(139,92,255,.10), transparent 38%),
    rgba(255,255,255,.055);
}

.cta-card .eyebrow {
  margin-bottom: 18px;
}

.cta-card h2 {
  margin-bottom: 16px;
}

.cta-card p {
  max-width: 640px;
  margin: 0 auto 30px;
  font-size: 17px;
}

/* legal/contact */
.legal-hero {
  position: relative;
  padding: 112px 0 54px;
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(37,223,255,.16), transparent 32%),
    radial-gradient(circle at 84% 0%, rgba(139,92,255,.18), transparent 32%);
  pointer-events: none;
}

.legal-hero .container {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  margin-top: 16px;
  font-size: clamp(40px, 5vw, 68px);
}

.legal-hero p {
  max-width: 720px;
  margin-top: 18px;
  font-size: 17px;
}

.legal-content {
  padding: 42px 0 110px;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.legal-card,
.contact-card {
  width: 100%;
  padding: 42px 46px;
  border-radius: var(--radius-lg);
  color: var(--dark-text);
  background: rgba(246,249,255,.97);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.legal-card h2,
.contact-card h2 {
  margin: 34px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,.09);
  color: var(--dark-text);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -.025em;
}

.legal-card h2:first-child,
.contact-card h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-card p,
.contact-card p,
.legal-card li,
.contact-card li {
  color: var(--dark-text-2);
  font-size: 15px;
  line-height: 1.85;
}

.legal-card a,
.contact-mail {
  color: #3454ff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-date {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.09);
  color: #6b7280 !important;
  font-size: 13.5px !important;
  font-weight: 800;
}

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

.clean-list {
  margin: 10px 0 0;
  padding-left: 22px;
}

/* footer */
.site-footer {
  padding: 50px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 950;
  color: var(--text);
}

.footer-links,
.footer-meta {
  display: grid;
  gap: 10px;
  color: var(--text-2);
  font-size: 13.5px;
}

/* responsiveness */
@media (max-height: 820px) and (min-width: 981px) {
  .section-hero {
    padding: 56px 0 52px;
  }

  h1 {
    font-size: clamp(44px, 4.7vw, 66px);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .trust-strip {
    margin-top: 22px;
  }

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

  .orb-wrap {
    width: 285px;
    height: 285px;
    top: 0;
    right: 48px;
  }

  .dashboard-card {
    width: 335px;
    bottom: 4px;
  }

  .signal-bars {
    height: 56px;
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .hero-visual {
    width: min(560px, 100%);
    min-height: 500px;
    justify-self: center;
  }

  .orb-wrap {
    top: 0;
    right: 50%;
    transform: translateX(50%) !important;
    width: 330px;
    height: 330px;
  }

  .dashboard-card {
    right: 50%;
    transform: translateX(50%) !important;
    bottom: 0;
    width: min(420px, 100%);
  }

  .trust-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-large,
  .feature-wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .security-grid,
  .api-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  html {
    scroll-behavior: auto;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .brand-text {
    font-size: 17px;
  }

  .nav {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .section-hero {
    padding: 62px 0 58px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 22px;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 10px;
    letter-spacing: .14em;
  }

  h1 {
    font-size: clamp(39px, 10.6vw, 52px);
    line-height: 1.1;
    letter-spacing: -.055em;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.76;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .trust-strip {
    gap: 9px;
  }

  .trust-strip span,
  .chip-row span {
    min-height: 32px;
    font-size: 12px;
  }

  /* mobile: remove heavy visual to keep landing clean and responsive */
  .hero-visual {
    display: none !important;
  }

  .section-trust {
    padding: 0 0 70px;
  }

  .trust-grid {
    gap: 14px;
  }

  .trust-item {
    min-height: auto;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .feature-large,
  .feature-wide {
    grid-column: span 1;
  }

  .feature-card {
    min-height: auto;
    padding: 26px;
  }

  .flow-step {
    padding: 26px;
  }

  .policy-list {
    padding: 24px;
  }

  .policy-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .code-panel {
    padding: 20px;
  }

  .cta-card {
    padding: 46px 22px;
  }

  .legal-hero {
    padding: 88px 0 42px;
  }

  .legal-hero h1 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .legal-content {
    padding: 32px 0 84px;
  }

  .legal-card,
  .contact-card {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .legal-card h2,
  .contact-card h2 {
    font-size: 18px;
  }

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

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

  .brand-text {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(37px, 10.2vw, 48px);
  }

  .trust-strip span,
  .chip-row span {
    width: 100%;
    justify-content: center;
  }
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
