:root {
  --bg: #f6f8fc;
  --bg-alt: #eef2f9;
  --surface: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --accent-glow: rgba(37, 99, 235, 0.22);
  --border: #e2e8f0;
  --border-soft: rgba(15, 23, 42, 0.07);
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1080px;
  --font-body: "Noto Sans KR", system-ui, -apple-system, "Segoe UI", "Malgun Gothic", sans-serif;
  --font-heading: "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 100% 70% at 50% -25%, rgba(37, 99, 235, 0.11), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 0%, rgba(99, 102, 241, 0.06), transparent 45%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(37, 99, 235, 0.18);
  color: var(--text);
}

h1,
h2,
h3,
.brand-name,
.price-name,
.price-amount {
  font-family: var(--font-heading);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 640px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 252, 0.82);
  backdrop-filter: blur(14px) saturate(1.35);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.85rem 0;
}

.header-inner .brand {
  margin-right: auto;
}

.header-actions {
  flex: 0 0 auto;
}

@media (max-width: 800px) {
  .header-inner .nav {
    order: 4;
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.65rem;
    border-top: 1px solid var(--border-soft);
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition: opacity 0.2s var(--ease-out);
}

.brand:hover {
  opacity: 0.88;
}

.brand-logo {
  display: block;
  width: clamp(80px, 10vw, 118px);
  height: auto;
}

.brand-name {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.35rem 0.55rem;
  margin: -0.35rem -0.55rem;
  border-radius: 8px;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.nav a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hero {
  padding: 3.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.eyebrow {
  font-family: var(--font-heading);
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(99, 102, 241, 0.08));
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.85rem, 4.2vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--text);
}

.lead {
  margin: 0 0 1.65rem;
  font-size: 1.125rem;
  line-height: 1.68;
  color: var(--text-muted);
  max-width: 46ch;
}

.lead strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.75rem;
  margin-bottom: 1.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.015em;
  text-decoration: none;
  border: 2px solid transparent;
  transition:
    background 0.22s var(--ease-out),
    color 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    transform 0.22s var(--ease-out);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(165deg, #3b82f6 0%, var(--accent) 45%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(165deg, #60a5fa 0%, var(--accent-hover) 50%, #1e40af 100%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.45);
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.45);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  border-color: rgba(100, 116, 139, 0.55);
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.48rem 1.05rem;
  font-size: 0.8125rem;
}

.btn-block {
  width: 100%;
  margin-top: auto;
}

.btn-on-dark {
  background: #fff;
  color: #1e40af;
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.btn-on-dark:hover {
  background: #f8fafc;
  border-color: #f8fafc;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.note {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 44ch;
}

.note code {
  font-size: 0.8125rem;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

@media (min-width: 520px) {
  .hero-visual {
    flex-direction: row;
    align-items: center;
  }
}

.hero-card {
  flex: 1;
  background: transparent;
  border: none;
  border-left: 3px solid rgba(148, 163, 184, 0.55);
  border-radius: 0;
  padding: 0.45rem 0 0.45rem 1.15rem;
  box-shadow: none;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}

.hero-card-accent {
  border-left-color: var(--accent);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.07), rgba(99, 102, 241, 0.04) 40%, transparent);
  border-radius: 0 12px 12px 0;
  padding-left: 1.2rem;
}

.hero-card-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.hero-card-accent .hero-card-label {
  color: var(--accent);
}

.hero-arrow {
  flex-shrink: 0;
  align-self: center;
  font-size: 1.35rem;
  color: rgba(100, 116, 139, 0.65);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: transparent;
}

.section-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--text);
  position: relative;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.75rem;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(99, 102, 241, 0.45));
  opacity: 0.95;
}

.section-intro {
  margin: 0.35rem 0 2.25rem;
  color: var(--text-muted);
  max-width: 52ch;
  font-size: 1.0625rem;
  line-height: 1.68;
}

.section-follow {
  margin: 1rem 0 0;
  color: var(--text-muted);
}

.trust-strip {
  position: relative;
  padding: 1.35rem 0 1.5rem;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.55) 22%, rgba(255, 255, 255, 0.55) 78%, transparent 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(8px);
}

.trust-strip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(28rem, 72%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
  pointer-events: none;
}

.trust-strip-inner {
  position: relative;
  z-index: 1;
}

.trust-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: clamp(0.65rem, 2vw, 1.15rem);
  row-gap: 0.75rem;
}

.trust-point {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.2rem 0;
}

.trust-point:not(:last-child)::after {
  content: "";
  display: none;
  flex-shrink: 0;
  width: 1px;
  height: 1.05rem;
  margin-left: clamp(0.65rem, 2vw, 1.15rem);
  background: linear-gradient(180deg, transparent, rgba(148, 163, 184, 0.5), transparent);
}

@media (min-width: 800px) {
  .trust-point:not(:last-child)::after {
    display: block;
  }
}

.trust-point-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0.9;
}

.trust-point-icon svg {
  display: block;
}

.trust-point-label {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.35;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .trust-point-label {
    white-space: normal;
  }
}

.value-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem 2.5rem;
  grid-template-columns: 1fr;
  max-width: 52rem;
}

@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2rem;
  }
}

.value-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 0 1.2rem;
  box-shadow: none;
}

.value-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #3b82f6 0%, #6366f1 100%);
  opacity: 0.85;
}

.value-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}

.value-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 860px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(26, 35, 50, 0.04);
}

.price-card-featured {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.12);
  padding-top: 1.75rem;
}

.price-ribbon {
  position: absolute;
  top: 0;
  right: 1rem;
  margin: 0;
  transform: translateY(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.price-name {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
}

.price-tag {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.price-amount {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-features {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  flex: 1;
}

.price-features li {
  margin-bottom: 0.35rem;
}

.cta-band {
  padding: 3.5rem 0;
  background:
    radial-gradient(ellipse 80% 120% at 20% 20%, rgba(59, 130, 246, 0.35), transparent 50%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(99, 102, 241, 0.25), transparent 45%),
    linear-gradient(165deg, #0f172a 0%, #1e293b 38%, #172554 100%);
  color: #e2e8f0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  align-items: stretch;
}

.cta-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 720px) {
  .cta-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.install-notice {
  margin: 0;
  padding: 1rem 1.15rem;
  font-size: 0.8125rem;
  line-height: 1.62;
  color: #cbd5e1;
  text-align: left;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 10px;
  max-width: 100%;
}

.install-notice strong {
  color: #f1f5f9;
  font-weight: 600;
}

.faq dd a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq dd a:hover {
  color: var(--accent-hover);
}

.faq dd a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.cta-copy h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: #f8fafc;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.2);
}

.cta-copy p {
  margin: 0;
  max-width: 42ch;
  color: #cbd5e1;
  font-size: 0.96875rem;
  line-height: 1.62;
}

.cta-actions {
  flex-shrink: 0;
}

.cta-hint {
  margin: 0.55rem 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
  opacity: 0.95;
}

.cta-hint a {
  color: #e2e8f0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-hint a:hover {
  color: #f8fafc;
}

.feature-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 40rem;
}

.feature-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 1.2rem 0;
  box-shadow: none;
  border-bottom: 1px solid var(--border-soft);
  transition: border-color 0.2s var(--ease-out);
}

.feature-card:hover {
  border-bottom-color: rgba(37, 99, 235, 0.12);
}

.feature-card:last-child {
  border-bottom: none;
}

.feature-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.feature-card h3::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #93c5fd, var(--accent));
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
  flex-shrink: 0;
  transform: translateY(-0.5px);
}

.feature-card p {
  margin: 0 0 0 1.1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.section-screenshots {
  background: transparent;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.shot-grid {
  display: grid;
  gap: 2.75rem 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .shot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2.5rem;
  }
}

.shot-card {
  margin: 0;
}

.shot-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  max-height: 320px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #fafbfd 0%, #e8ecf4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.shot-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}

.shot-icon {
  font-size: 2rem;
  line-height: 1;
  color: #c5ccd8;
  font-weight: 300;
}

.shot-label {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  max-width: 90%;
}

.shot-path {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.6875rem;
  color: var(--text-muted);
  max-width: 100%;
  padding: 0 0.5rem;
  word-break: break-all;
}

.shot-caption {
  margin: 0.85rem 0 0;
  line-height: 1.55;
}

.shot-feature-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.45rem;
  letter-spacing: -0.025em;
}

.shot-feature-desc {
  margin: 0;
  font-size: 0.90625rem;
  color: var(--text-muted);
  line-height: 1.62;
}

.shot-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 24px 48px -12px rgba(15, 23, 42, 0.12),
    0 12px 24px -8px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.shot-card:hover .shot-media {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 32px 64px -14px rgba(15, 23, 42, 0.14),
    0 16px 32px -10px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.shot-img {
  width: 100%;
  height: auto;
  max-height: min(52vh, 440px);
  display: block;
  margin: 0 auto;
  object-fit: contain;
  object-position: top center;
}

.steps {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 36rem;
}

.steps li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.35rem 0;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--border-soft);
}

.steps li:last-child {
  border-bottom: none;
}

.step-num {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.9));
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(37, 99, 235, 0.28);
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.08);
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  color: var(--text);
}

.steps p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

#security p {
  margin: 0;
  color: var(--text-muted);
}

#security .section-follow {
  color: var(--text-muted);
}

.faq {
  margin: 0;
}

.faq dt {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  letter-spacing: -0.02em;
  color: var(--text);
  font-size: 1rem;
}

.faq dt:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.faq dd {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 2.5rem 0 2.75rem;
  background: transparent;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: none;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
}

.footer-brand img {
  display: block;
}

.footer-logo {
  width: clamp(88px, 11vw, 124px);
  height: auto;
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.35rem;
  width: 100%;
  max-width: 32rem;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer-disclaimer {
  margin: 1.1rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-soft);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-muted);
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  text-align: center;
  letter-spacing: -0.02em;
}

@media (min-width: 1000px) {
  .footer-disclaimer {
    white-space: nowrap;
    font-size: clamp(0.74rem, 0.85vw, 0.8125rem);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
  }

  .footer-disclaimer::-webkit-scrollbar {
    height: 6px;
  }

  .footer-disclaimer::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.45);
    border-radius: 999px;
  }
}

.footer-disclaimer strong {
  color: var(--text);
  font-weight: 600;
}

.footer-sponsor {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
}

.footer-sponsor a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-sponsor a:hover {
  text-decoration: underline;
}

.footer-sponsor a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.footer-legal {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
  letter-spacing: -0.01em;
  width: 100%;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover,
  .btn-ghost:hover,
  .btn-on-dark:hover,
  .shot-card:hover .shot-media {
    transform: none;
  }
}
