:root {
  color-scheme: light;
  --blue: #0a34b8;
  --blue-strong: #0830a8;
  --blue-soft: #e9f2ff;
  --cyan: #1e9cff;
  --ink: #07152f;
  --muted: #5c6c85;
  --line: #d7e3f7;
  --paper: #ffffff;
  --band: #f5f8fd;
  --gold: #d99b19;
  --gold-soft: #fff3c7;
  --green: #13a06f;
  --sky: #dff5ff;
  --sun: #ffd15c;
  --sun-deep: #ff9f1c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(215, 227, 247, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--blue);
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 39px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
  color: #304362;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
}

.header-cta,
.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 24px rgba(10, 52, 184, 0.24);
}

.secondary-button {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.96) 92%),
    linear-gradient(135deg, #e9fbff 0%, #b8e8ff 48%, #eef8ff 100%);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.1)),
    url("assets/premium_swing.png");
  background-size: cover;
  background-position: center right;
  opacity: 0.44;
  filter: saturate(1.08);
}

.hero-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.84) 0 9%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 40%, rgba(255, 255, 255, 0.48) 70%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 24%);
}

.sky-sun {
  position: absolute;
  z-index: -1;
  top: 92px;
  right: clamp(34px, 8vw, 128px);
  width: clamp(116px, 16vw, 210px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #fff7bc 0 28%, var(--sun) 52%, rgba(255, 183, 64, 0.12) 70%);
  box-shadow: 0 0 52px rgba(255, 191, 73, 0.52), 0 0 120px rgba(255, 219, 128, 0.44);
  animation: sunPulse 7s ease-in-out infinite;
}

.cloud {
  position: absolute;
  z-index: -1;
  width: 230px;
  height: 64px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  filter: blur(1px);
  box-shadow: 0 14px 38px rgba(82, 143, 190, 0.12);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.cloud::before {
  width: 90px;
  height: 90px;
  left: 36px;
  top: -42px;
}

.cloud::after {
  width: 118px;
  height: 118px;
  right: 30px;
  top: -62px;
}

.cloud-a {
  top: 172px;
  left: 34%;
  animation: cloudDrift 20s ease-in-out infinite;
}

.cloud-b {
  top: 284px;
  left: 64%;
  width: 170px;
  height: 52px;
  opacity: 0.64;
  animation: cloudDrift 26s ease-in-out infinite reverse;
}

.light-trail {
  position: absolute;
  z-index: -1;
  right: -120px;
  width: 620px;
  height: 140px;
  border: 2px solid rgba(48, 169, 255, 0.42);
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
  transform: rotate(-18deg);
  animation: trailSweep 8s ease-in-out infinite;
}

.trail-a {
  bottom: 52px;
}

.trail-b {
  bottom: 88px;
  width: 520px;
  opacity: 0.58;
  animation-delay: -2.4s;
}

.hero-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 88vh;
  margin: 0 auto;
  padding: 94px 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.section-kicker.gold {
  color: #a87300;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: clamp(44px, 8vw, 86px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.3;
}

.lead {
  max-width: 610px;
  margin-bottom: 28px;
  color: #213757;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.8;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.phone-preview {
  justify-self: center;
  width: min(100%, 330px);
  padding: 12px;
  border-radius: 42px;
  background: #0b1730;
  box-shadow: 0 32px 70px rgba(7, 21, 47, 0.26), 0 0 0 8px rgba(255, 255, 255, 0.5);
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone-screen {
  position: relative;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  border-radius: 31px;
  background: #d8e8ff;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.delay-panel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 12px;
  color: #fff;
  background: rgba(8, 32, 72, 0.68);
  backdrop-filter: blur(10px);
}

.delay-panel span {
  font-size: 13px;
  font-weight: 800;
}

.delay-panel strong {
  font-size: 24px;
}

.camera-button {
  position: absolute;
  left: 50%;
  bottom: 25px;
  width: 56px;
  height: 56px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border: 6px solid #fff;
  box-shadow: 0 10px 24px rgba(10, 52, 184, 0.32);
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0;
}

.band {
  background: var(--band);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.intro p,
.premium-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
  font-weight: 700;
}

.screens {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 209, 92, 0.34), rgba(255, 209, 92, 0) 18%),
    linear-gradient(180deg, #ffffff 0%, #e8f8ff 52%, #ffffff 100%);
}

.screens::before {
  content: "";
  position: absolute;
  inset: auto -8% 9% 36%;
  height: 190px;
  border-top: 2px solid rgba(30, 156, 255, 0.34);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.screens-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
}

.screens-copy p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.85;
}

.screen-slider {
  position: relative;
  width: min(100%, 252px);
  margin-inline: auto;
  padding: 4px 38px 30px;
}

.slider-viewport {
  overflow: hidden;
  border-radius: 24px;
}

.slider-track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.app-shot {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  padding: 6px;
  border-radius: 22px;
  background: #07152f;
  box-shadow: 0 16px 34px rgba(9, 58, 137, 0.16);
}

.app-shot img {
  width: 100%;
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
  border-radius: 17px;
}

.app-shot figcaption {
  position: absolute;
  left: 20px;
  bottom: 16px;
  padding: 6px 9px;
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 21, 47, 0.62);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 900;
}

.app-shot::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 17px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.42) 48%, rgba(255, 255, 255, 0) 62%);
  transform: translateX(-140%);
  animation: screenShine 5.5s ease-in-out infinite;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 2px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 30px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 52, 184, 0.18);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.slider-dots button:hover,
.slider-dots button:focus-visible,
.slider-dots button.is-active {
  background: var(--blue);
  transform: translateY(-2px);
}

.carousel-button {
  position: absolute;
  z-index: 2;
  top: 44%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 24px rgba(10, 52, 184, 0.22);
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.carousel-prev {
  left: 4px;
}

.carousel-next {
  right: 4px;
}

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

.feature-card,
.premium-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 36px rgba(40, 77, 128, 0.1);
}

.feature-card {
  padding: 26px;
  overflow: hidden;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 700;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 42px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 900;
}

.feature-visual {
  position: relative;
  height: 128px;
  margin: -4px -4px 22px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 209, 92, 0.48), rgba(255, 209, 92, 0) 25%),
    linear-gradient(145deg, #e8f8ff, #f8fcff 58%, #d8efff);
}

.delay-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-line {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 64px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(10, 52, 184, 0.18));
}

.timeline-dot {
  position: absolute;
  top: 51px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 7px solid var(--blue);
  box-shadow: 0 10px 22px rgba(10, 52, 184, 0.22);
}

.dot-live {
  right: 31px;
  animation: liveDot 2.8s ease-in-out infinite;
}

.dot-delay {
  left: 31px;
  border-color: var(--cyan);
}

.delay-badge {
  position: absolute;
  left: 50%;
  top: 24px;
  min-width: 82px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 21, 47, 0.72);
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 900;
  animation: badgePulse 2.8s ease-in-out infinite;
}

.hd-visual {
  background:
    linear-gradient(135deg, rgba(30, 156, 255, 0.22), rgba(255, 255, 255, 0.68)),
    url("assets/store-screenshot-delay.png");
  background-size: cover;
  background-position: center 28%;
}

.hd-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.58);
}

.focus-frame {
  position: absolute;
  inset: 28px 54px;
  border: 3px solid var(--blue);
  border-radius: 8px;
  box-shadow: 0 0 0 999px rgba(255, 255, 255, 0.34);
  animation: focusScan 3.2s ease-in-out infinite;
}

.spark {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 18px rgba(255, 209, 92, 0.9);
  animation: sparkle 2.6s ease-in-out infinite;
}

.spark-a {
  top: 24px;
  right: 42px;
}

.spark-b {
  bottom: 30px;
  left: 44px;
  animation-delay: -0.7s;
}

.spark-c {
  bottom: 48px;
  right: 74px;
  animation-delay: -1.4s;
}

.tap-visual {
  display: grid;
  place-items: center;
}

.tap-button {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border: 7px solid #fff;
  box-shadow: 0 18px 36px rgba(10, 52, 184, 0.24);
}

.tap-button::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: #fff;
}

.tap-ring {
  position: absolute;
  width: 88px;
  height: 88px;
  border: 2px solid rgba(10, 52, 184, 0.28);
  border-radius: 50%;
  animation: tapRipple 2.4s ease-out infinite;
}

.ring-b {
  animation-delay: 1.1s;
}

.premium {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 221, 116, 0.75), rgba(255, 221, 116, 0) 18%),
    linear-gradient(135deg, #0c5fe8 0%, #0a8df4 48%, #8bddff 100%);
}

.premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/store-screenshot-delay.png");
  background-size: 340px auto;
  background-position: right 10% center;
  background-repeat: no-repeat;
  opacity: 0.12;
  filter: saturate(1.1);
}

.premium-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.premium h2,
.premium-copy p,
.premium .section-kicker {
  color: #fff;
}

.premium-copy p {
  opacity: 0.9;
}

.premium-panel {
  padding: 30px;
  color: var(--ink);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 24px;
  padding: 0 16px;
  border-radius: 8px;
  color: #815800;
  background: linear-gradient(135deg, #fff8dc, #ffd45c);
  font-weight: 900;
}

.premium-list {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.premium-list li {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.premium-list strong {
  font-size: 19px;
}

.premium-list span {
  color: var(--muted);
  font-weight: 700;
}

.full {
  width: 100%;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.compare-table [role="row"] {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
}

.compare-table [role="row"]:last-child {
  border-bottom: 0;
}

.compare-table span {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  color: #263952;
  font-weight: 800;
}

.compare-table .table-head span {
  color: #fff;
  background: var(--blue);
}

.compare-table [role="row"] span:last-child {
  color: var(--green);
}

.scene-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.scene-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #28415f;
  background: #fff;
  font-weight: 900;
}

.footer {
  color: #fff;
  background: #06142d;
}

.footer .section-inner {
  padding-top: 34px;
  padding-bottom: 34px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  margin: 6px 0 0;
  color: #b8c6d9;
}

.footer a {
  color: #d8e8ff;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 92px, rgba(255, 209, 92, 0.38), rgba(255, 209, 92, 0) 180px),
    linear-gradient(180deg, #e9fbff 0%, #fff 360px);
}

.legal-main {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 72px;
}

.legal-card {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 64px rgba(40, 77, 128, 0.12);
}

.legal-card h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(34px, 6vw, 54px);
}

.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(22px, 4vw, 30px);
}

.legal-card p,
.legal-card li {
  color: #304362;
  font-weight: 700;
  line-height: 1.85;
}

.legal-card ul,
.legal-card ol {
  padding-left: 1.3em;
}

.legal-meta {
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 800;
}

@keyframes sunPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.07);
    opacity: 1;
  }
}

@keyframes cloudDrift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(34px);
  }
}

@keyframes trailSweep {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(0) rotate(-18deg);
  }
  50% {
    opacity: 0.64;
    transform: translateX(-28px) rotate(-16deg);
  }
}

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

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

@keyframes liveDot {
  0%,
  100% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(-138px) scale(0.9);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    opacity: 0.82;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
  }
}

@keyframes focusScan {
  0%,
  100% {
    transform: scale(0.92);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.7);
  }
  45% {
    opacity: 1;
    transform: scale(1.4);
  }
}

@keyframes tapRipple {
  0% {
    opacity: 0.7;
    transform: scale(0.62);
  }
  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

@keyframes screenShine {
  0%,
  46% {
    transform: translateX(-140%);
  }
  72%,
  100% {
    transform: translateX(140%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 880px) {
  .site-header {
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .hero-inner,
  .intro-grid,
  .screens-layout,
  .premium-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 96px;
    gap: 34px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-inner {
    display: block;
    min-height: 92vh;
    padding-bottom: 40px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 55%, rgba(255, 255, 255, 0.72) 100%),
      linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 22%);
  }

  .phone-preview {
    position: absolute;
    right: 22px;
    bottom: -236px;
    width: min(44vw, 192px);
    opacity: 0.82;
    pointer-events: none;
  }

  .cloud-a {
    left: 18%;
  }

  .cloud-b,
  .trail-b {
    display: none;
  }

  .screen-slider {
    width: min(100%, 246px);
  }

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

  .compare-table {
    overflow-x: auto;
  }

  .compare-table [role="row"] {
    min-width: 620px;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand span {
    font-size: 14px;
  }

  .brand img {
    width: 34px;
    height: 32px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero-actions {
    display: grid;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .phone-preview {
    right: 18px;
    bottom: -210px;
    width: min(43vw, 160px);
  }

  .sky-sun {
    top: 86px;
    right: -24px;
    width: 128px;
  }

  .cloud {
    width: 160px;
    height: 48px;
    opacity: 0.68;
  }

  .cloud-a {
    top: 168px;
    left: 52%;
  }

  .light-trail {
    right: -250px;
    bottom: 118px;
  }

  .screen-slider {
    width: min(100%, 226px);
    padding-inline: 34px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .premium::before {
    background-size: 220px auto;
    background-position: right -70px bottom -120px;
  }

  .feature-card,
  .premium-panel {
    padding: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
