:root {
  color-scheme: dark;

  --bg: #07111a;
  --bg-soft: #0b1620;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.05);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --surface-solid: #0f1b26;

  --text: #ffffff;
  --text-soft: #dbe5ec;
  --text-muted: #93a5b3;
  --text-faint: #8093a1;

  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(29, 155, 240, 0.22);

  --primary: #1d9bf0;
  --primary-2: #62c0ff;
  --accent: #7c4dff;

  --badge-bg: rgba(29, 155, 240, 0.1);
  --badge-text: #7cc7ff;
  --badge-border: rgba(29, 155, 240, 0.16);

  --shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.12);

  --glow-blue: rgba(29, 155, 240, 0.12);
  --glow-purple: rgba(124, 77, 255, 0.12);

  --header-bg: rgba(7, 11, 17, 0.72);
  --toggle-bg: rgba(255, 255, 255, 0.05);
  --toggle-hover: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] {
  color-scheme: light;

  --bg: #f5f9fc;
  --bg-soft: #edf4f8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-hover: rgba(255, 255, 255, 0.98);
  --surface-solid: #ffffff;

  --text: #0f1720;
  --text-soft: #22313d;
  --text-muted: #526474;
  --text-faint: #718494;

  --border: rgba(15, 23, 32, 0.08);
  --border-soft: rgba(15, 23, 32, 0.06);
  --border-strong: rgba(29, 155, 240, 0.2);

  --primary: #168de2;
  --primary-2: #49b4ff;
  --accent: #6a46f5;

  --badge-bg: rgba(29, 155, 240, 0.1);
  --badge-text: #167fd3;
  --badge-border: rgba(29, 155, 240, 0.18);

  --shadow: 0 18px 45px rgba(24, 55, 88, 0.08);
  --shadow-soft: 0 10px 30px rgba(24, 55, 88, 0.06);

  --glow-blue: rgba(29, 155, 240, 0.1);
  --glow-purple: rgba(124, 77, 255, 0.08);

  --header-bg: rgba(245, 249, 252, 0.8);
  --toggle-bg: rgba(255, 255, 255, 0.92);
  --toggle-hover: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Tahoma, sans-serif;
  background:
    radial-gradient(circle at top right, var(--glow-blue), transparent 28%),
    radial-gradient(circle at top left, var(--glow-purple), transparent 24%),
    var(--bg);
  color: var(--text);
  transition: background 0.35s ease, color 0.35s ease;
}

a,
button,
div,
section,
article,
header,
footer,
p,
h1,
h2,
h3,
h4,
span {
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header.scrolled {
  background: var(--header-bg);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo,
.footer-logo {
  text-decoration: none;
  color: var(--text);
  font-size: 30px;
  font-weight: 800;
  position: relative;
  z-index: 1002;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1002;
}

.header-cta {
  display: inline-flex;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: var(--toggle-bg);
  border-radius: 16px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    min-height: 78px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    background: var(--header-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .nav-links a {
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--surface);
    color: var(--text);
  }

  .nav-links a:hover {
    background: var(--surface-hover);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 14px 0;
  }

  .logo {
    font-size: 26px;
  }

  .theme-toggle,
  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .nav {
    min-height: 72px;
    gap: 12px;
  }

  .logo {
    font-size: 24px;
  }

  .nav-links {
    padding: 14px;
    border-radius: 20px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 13px 14px;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: var(--toggle-bg);
  color: var(--text);
  border-radius: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.theme-toggle:hover {
  background: var(--toggle-hover);
  transform: translateY(-2px);
}

.theme-toggle-icon {
  font-size: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.small {
  padding: 12px 18px;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 10px 25px rgba(29, 155, 240, 0.18);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--surface-strong);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--surface-hover);
  transform: translateY(-3px);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--badge-bg);
  color: var(--badge-text);
  border: 1px solid var(--badge-border);
  font-size: 13px;
  margin-bottom: 18px;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-heading.no-margin {
  margin-bottom: 0;
}

.section-heading.align-right {
  text-align: right;
  margin-right: 0;
}

.section-heading h2 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 2;
}

.hero,
.features-section,
.download-section,
.screenshots-section,
.why-section,
.stats-section,
.faq-section,
.final-cta-section {
  padding: 110px 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 84px);
}

.hero-content h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 2.1;
  max-width: 620px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 34px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-meta-item strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  margin-bottom: 6px;
}

.hero-meta-item span {
  color: var(--text-faint);
  font-size: 14px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 320px;
  max-width: 100%;
  padding: 20px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, var(--glow-blue), transparent 40%),
    var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.phone-topbar {
  display: flex;
  justify-content: space-between;
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 18px;
}

.story-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.story-row span,
.story-bubbles span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.mock-post,
.mini-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

.mock-post:last-child,
.mini-post:last-child {
  border-bottom: none;
}

.mock-avatar,
.mini-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.mock-avatar.blue,
.mini-avatar.blue {
  background: linear-gradient(135deg, #4f7cff, #79b4ff);
}

.mock-avatar.purple,
.mini-avatar.purple {
  background: linear-gradient(135deg, var(--accent), #b388ff);
}

.mock-lines,
.mini-lines {
  flex: 1;
}

.mock-lines span,
.mini-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(127, 145, 161, 0.18);
  margin-bottom: 10px;
}

.mock-lines span:nth-child(1),
.mini-lines span:nth-child(1) { width: 52%; }

.mock-lines span:nth-child(2),
.mini-lines span:nth-child(2) { width: 88%; }

.mock-lines span.small,
.mini-lines span.small {
  width: 36%;
  margin-bottom: 0;
}

.features-grid,
.download-methods,
.stats-grid {
  display: grid;
  gap: 20px;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.download-method,
.stat-card,
.faq-item,
.shot-card,
.why-point,
.orbit-card,
.final-cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.feature-card,
.download-method,
.stat-card {
  padding: 28px;
  border-radius: 28px;
}

.feature-card:hover,
.download-method:hover,
.stat-card:hover,
.shot-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
}

.feature-icon,
.download-icon,
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-card h3,
.download-method h3,
.why-point h3,
.shot-content h3,
.stat-card h3,
.final-cta-box h2,
.footer-col h4,
.orbit-card.main h3,
.faq-question {
  color: var(--text);
}

.feature-card p,
.download-method p,
.why-point p,
.shot-content p,
.stat-card p,
.final-cta-box p,
.footer-brand p,
.footer-bottom p,
.footer-col a,
.faq-answer p,
.orbit-card.main p {
  color: var(--text-muted);
  line-height: 2;
}

.download-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.download-tab {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
  padding: 14px 22px;
  border-radius: 16px;
  cursor: pointer;
  font-family: inherit;
}

.download-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  border-color: transparent;
}

.download-panel {
  display: none;
}

.download-panel.active {
  display: block;
}

.download-methods {
  grid-template-columns: repeat(3, 1fr);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
}

.shot-card {
  padding: 22px;
  border-radius: 30px;
  overflow: hidden;
}

.shot-card.large {
  grid-row: span 2;
  min-height: 560px;
}

.shot-card.wide {
  grid-column: span 2;
}

.shot-ui {
  background:
    radial-gradient(circle at top right, var(--glow-blue), transparent 40%),
    var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
  min-height: 220px;
  margin-bottom: 22px;
}

.feed-ui {
  min-height: 420px;
}

.shot-topbar {
  display: flex;
  justify-content: space-between;
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 18px;
}

.story-ui {
  min-height: 240px;
}

.story-bubbles {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.story-preview {
  height: 130px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(29, 155, 240, 0.22), rgba(124, 77, 255, 0.22)),
    var(--surface-strong);
}

.chat-ui {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.chat-row {
  height: 46px;
  border-radius: 18px;
  max-width: 75%;
}

.chat-row.left {
  background: rgba(127, 145, 161, 0.14);
}

.chat-row.right {
  background: rgba(29, 155, 240, 0.16);
  margin-right: auto;
  margin-left: 25%;
}

.chat-row.short {
  max-width: 52%;
}

.themes-ui {
  min-height: 180px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-content: center;
}

.theme-pill {
  height: 62px;
  border-radius: 18px;
}

.theme-pill.t1 { background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.theme-pill.t2 { background: linear-gradient(135deg, var(--accent), #b388ff); }
.theme-pill.t3 { background: linear-gradient(135deg, #00b894, #55efc4); }
.theme-pill.t4 { background: linear-gradient(135deg, #ff7675, #fab1a0); }
.theme-pill.t5 { background: linear-gradient(135deg, #fdcb6e, #ffeaa7); }
.theme-pill.t6 { background: linear-gradient(135deg, #2d3436, #636e72); }

.why-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-points {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 24px;
}

.why-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px dashed var(--border);
  animation: spinSlow 20s linear infinite;
}

.orbit-card {
  position: absolute;
  border-radius: 28px;
}

.orbit-card.main {
  position: relative;
  z-index: 2;
  width: 280px;
  padding: 30px;
  text-align: center;
  background:
    radial-gradient(circle at top, var(--glow-blue), transparent 55%),
    var(--surface-strong);
}

.glow-dot {
  width: 14px;
  height: 14px;
  display: block;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 24px var(--primary);
}

.orbit-card.small {
  padding: 14px 18px;
  color: var(--text-soft);
  font-size: 14px;
  z-index: 2;
}

.orbit-card.small.one {
  top: 56px;
  right: 58px;
}

.orbit-card.small.two {
  bottom: 88px;
  right: 32px;
}

.orbit-card.small.three {
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.stat-card {
  text-align: center;
  padding: 34px 20px;
}

.stat-card h3 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 10px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 24px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 17px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
  cursor: pointer;
}

.faq-plus {
  font-size: 28px;
  line-height: 1;
  color: var(--badge-text);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-plus {
  transform: rotate(45deg);
}

.final-cta-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 70px 24px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top center, var(--glow-blue), transparent 42%),
    linear-gradient(135deg, var(--surface-strong), var(--surface));
}

.final-cta-box h2 {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.3;
}

.final-cta-box p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
}

.final-cta-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
}

.cta-glow.c1 {
  width: 220px;
  height: 220px;
  background: var(--glow-blue);
  top: -40px;
  right: 10%;
}

.cta-glow.c2 {
  width: 180px;
  height: 180px;
  background: var(--glow-purple);
  bottom: -50px;
  left: 12%;
}

.footer {
  padding: 26px 0 36px;
  border-top: 1px solid var(--border-soft);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
}

.footer-brand {
  max-width: 340px;
}

.footer-links {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 56px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-soft);
  background: var(--surface-strong);
  border: 1px solid var(--border);
}

.footer-socials a:hover {
  transform: translateY(-4px);
  background: var(--badge-bg);
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.screenshots-section::before,
.why-section::before,
.stats-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
}

.screenshots-section::before {
  top: 40px;
  left: 0;
  background: var(--glow-blue);
}

.why-section::before {
  bottom: 10px;
  right: 0;
  background: var(--glow-purple);
}

.stats-section::before {
  top: 0;
  left: 10%;
  background: var(--glow-blue);
}

.faq-section::before {
  bottom: 0;
  right: 12%;
  background: var(--glow-purple);
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .hero-grid,
  .why-layout {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-methods {
    grid-template-columns: 1fr 1fr;
  }

  .screenshots-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shot-card.large {
    grid-row: span 1;
    min-height: auto;
  }

  .shot-card.wide {
    grid-column: span 2;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-visual {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero,
  .features-section,
  .download-section,
  .screenshots-section,
  .why-section,
  .stats-section,
  .faq-section,
  .final-cta-section {
    padding: 85px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .features-grid,
  .download-methods,
  .screenshots-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .shot-card.wide {
    grid-column: span 1;
  }

  .why-visual {
    min-height: 360px;
  }

  .orbit-ring {
    width: 280px;
    height: 280px;
  }

  .orbit-card.main {
    width: 230px;
    padding: 24px;
  }

  .orbit-card.small.one {
    top: 30px;
    right: 20px;
  }

  .orbit-card.small.two {
    bottom: 35px;
    right: 8px;
  }

  .orbit-card.small.three {
    left: 8px;
  }

  .faq-question {
    font-size: 15px;
    padding: 20px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
  }

  .final-cta-box {
    padding: 54px 18px;
    border-radius: 28px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .section-badge {
    font-size: 12px;
    padding: 7px 12px;
  }

  .feature-card,
  .download-method,
  .stat-card,
  .shot-card,
  .why-point {
    padding: 18px;
    border-radius: 22px;
  }

  .shot-ui {
    border-radius: 20px;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
}
