:root {
  --bg: #fbfcfa;
  --surface: #fdfefc;
  --surface-strong: #ffffff;
  --ink: #132235;
  --muted: #516173;
  --brand: #205a46;
  --brand-dark: #173f31;
  --ring: #7dcb84;
  --line: #e4e9e4;
  --focus: #ff9f1a;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, #ffffff 0%, rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at top right, #f7fbf7 0%, rgba(247, 251, 247, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, #fafcf9 42%, #f3f6f2 100%);
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 999;
  background: #fff;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  border: 2px solid var(--focus);
  text-decoration: none;
  font-weight: 700;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(228, 233, 228, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.02rem;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(19, 34, 53, 0.08);
}

.main-nav {
  display: flex;
  gap: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(228, 233, 228, 0.92);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  box-shadow: 0 6px 16px rgba(19, 34, 53, 0.04);
}

.menu-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle-line + .menu-toggle-line {
  margin-top: 4px;
}

.menu-toggle:hover {
  background: #fff;
  border-color: rgba(214, 223, 214, 0.98);
}

.site-header.menu-open .menu-toggle {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 22px rgba(19, 34, 53, 0.08);
}

.site-header.menu-open .menu-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--muted);
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.45);
  transition: 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 0.7;
  transform: scaleX(1);
}

.btn {
  border-radius: 999px;
  padding: 11px 20px;
  min-height: 44px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-ghost {
  border-color: var(--line);
  background: var(--surface-strong);
  color: var(--ink);
}

.app-store-badge-link {
  display: inline-block;
  line-height: 0;
}

.app-store-badge {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
}

.app-store-badge-link-sm .app-store-badge {
  width: 170px;
}

.hero {
  padding: 28px 0 24px;
}

.page-hero {
  padding-top: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: 22px 22px 18px;
  border-radius: 28px;
  border: 1px solid rgba(228, 233, 228, 0.88);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 18px 34px rgba(19, 34, 53, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(228, 233, 228, 0.88);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(19, 34, 53, 0.04);
}

.page-hero-copy .lead {
  max-width: 52ch;
}

.page-hero-visual {
  min-height: 280px;
  border-radius: 24px;
  border: 1px solid rgba(228, 233, 228, 0.9);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
  padding: 20px;
}

.hero-headline {
  display: block;
}

.hero-headline-copy {
  min-width: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.8rem;
  color: #557663;
  margin: 0;
}

h1 {
  margin: 8px 0 12px;
  font-size: clamp(2.2rem, 4.1vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 9ch;
  font-weight: 700;
}

.lead {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.62;
  color: var(--muted);
  max-width: 46ch;
}

.hero-points {
  margin: 18px 0 20px;
  padding-left: 0;
  color: var(--muted);
  list-style: none;
}

.hero-points li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #79cf80 0%, #3ca34a 100%);
  box-shadow: 0 0 0 5px rgba(104, 187, 112, 0.16);
  flex: 0 0 auto;
}

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

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

.hero-visual {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  border: 1px solid rgba(228, 233, 228, 0.92);
  border-radius: 24px;
  padding: 20px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-artwork {
  width: min(100%, 420px);
  margin: 0 auto;
}

.hero-artwork img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  filter: drop-shadow(0 18px 30px rgba(19, 34, 53, 0.12));
}

.hero-visual--home {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-visual--desktop.hero-visual--home {
  justify-content: flex-end;
}

.hero-visual--home .hero-artwork {
  width: min(100%, 360px);
  transform: none;
}

.hero-visual--home .hero-artwork img {
  filter: drop-shadow(0 18px 28px rgba(19, 34, 53, 0.08));
}

.hero-visual--mobile {
  display: none;
}

.device-showcase {
  width: min(100%, 300px);
}

.comparison-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.compare-option {
  min-height: 180px;
  border-radius: 22px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  border: 1px solid rgba(228, 233, 228, 0.92);
  background: #fff;
}

.compare-option strong {
  font-size: 1.32rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.compare-option span {
  color: var(--muted);
  line-height: 1.45;
}

.compare-label {
  display: inline-block;
  margin-bottom: auto;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.compare-option-app {
  background: linear-gradient(180deg, #fcfffc 0%, #f3faf4 100%);
}

.compare-option-device {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f7 100%);
}

.vs-pill {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid rgba(228, 233, 228, 0.9);
  background: #fff;
}

.old-device-visual {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.old-device-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.old-device-note ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.travel-visual {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.travel-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.travel-note ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.device-shell {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 16px 16px 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, #1a2440 0%, #2e3d68 100%);
  box-shadow:
    0 18px 30px rgba(22, 39, 73, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.device-camera {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 86px;
  height: 10px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(7, 12, 28, 0.74);
}

.device-shell img {
  display: block;
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(180deg, #c6f0c0 0%, #67ba6d 100%);
}

.section {
  padding: 36px 0;
}

.trust-strip-section {
  padding-top: 8px;
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 2.7vw, 2.15rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.section-lead {
  margin: -6px 0 18px;
  color: var(--muted);
  max-width: 56ch;
  font-size: 1.02rem;
  line-height: 1.6;
}

.section-alt {
  background: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(228, 233, 228, 0.86);
  border-bottom: 1px solid rgba(228, 233, 228, 0.86);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-pill,
.summary-point {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(228, 233, 228, 0.9);
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 10px 22px rgba(19, 34, 53, 0.04);
  color: var(--ink);
  font-size: 0.94rem;
}

.summary-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.summary-point strong,
.summary-point span {
  display: block;
}

.summary-point strong {
  margin-bottom: 6px;
  font-weight: 700;
  line-height: 1.25;
}

.summary-point span {
  color: var(--muted);
  line-height: 1.5;
}

.view-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.clock-choice {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.clock-shot {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}

.read-more-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  background: var(--surface-strong);
  border: 1px solid rgba(228, 233, 228, 0.72);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 6px 16px rgba(19, 34, 53, 0.03);
}

.step-number {
  width: 34px;
  height: 34px;
  margin: 0 0 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: var(--brand);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.card h3 a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.read-more-card {
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 20px;
  margin-bottom: 0;
  padding: 12px;
  background: linear-gradient(180deg, #fbfcfb 0%, #f4f7f4 100%);
  border: 1px solid rgba(228, 233, 228, 0.82);
}

.card-media--character {
  object-position: center;
}

.read-more-body {
  min-width: 0;
}

.read-more-card h3 {
  margin-bottom: 10px;
}

.read-more-card p {
  padding-right: 8px;
}

.read-more-kicker {
  margin: 0 0 10px !important;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .read-more-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .read-more-card {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
  }

  .card-media {
    aspect-ratio: 1 / 1;
  }
}

.card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.card li + li {
  margin-top: 6px;
}

.card .step-number {
  color: #fff;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 14px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(228, 233, 228, 0.78);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(19, 34, 53, 0.03);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 740px;
}

.compare-table th,
.compare-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
  font-size: 0.98rem;
}

.compare-table thead th {
  background: #fbfcfb;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.96rem;
}

.compare-table thead th:nth-child(2),
.compare-table tbody td:nth-child(2) {
  background: rgba(247, 251, 247, 0.45);
}

.compare-table thead th:nth-child(2) {
  color: var(--ink);
}

.compare-table tbody tr:nth-child(even) {
  background: rgba(250, 251, 250, 0.7);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.table-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.comparison-summary {
  margin-bottom: 22px;
  padding: 20px 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 250, 246, 0.96) 100%);
  border: 1px solid rgba(228, 233, 228, 0.9);
  box-shadow: 0 14px 28px rgba(19, 34, 53, 0.05);
}

.comparison-intro {
  max-width: 760px;
  margin: 0 0 18px;
  padding: 0;
  border-left: 0;
}

.comparison-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.comparison-kicker {
  margin: 0 0 6px !important;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink) !important;
  font-size: 1.02rem;
}

.final-cta-section {
  text-align: center;
  padding-top: 28px;
  padding-bottom: 30px;
}

.final-cta-content {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta-content .section-lead {
  max-width: 32ch;
  margin: 0 auto 14px;
}

.final-cta-content .app-store-badge-link {
  margin: 0 auto;
}

.privacy-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.privacy-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.privacy-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
}

.privacy-table {
  min-width: 680px;
}

.privacy-table th[scope="row"] {
  font-weight: 700;
}

.theme-card {
  margin: 0;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.theme-card figcaption {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--ink);
}

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

.phase-row img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 12px;
  background: linear-gradient(180deg, #bce8b6 0%, #47a84f 100%);
}

.phase-row img:nth-child(1) {
  background: linear-gradient(180deg, #f7b6bc 0%, #db4048 100%);
}

.phase-row img:nth-child(2) {
  background: linear-gradient(180deg, #f8d1a0 0%, #f08a22 100%);
}

.phase-row img:nth-child(3) {
  background: linear-gradient(180deg, #bce8b6 0%, #47a84f 100%);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(228, 233, 228, 0.74);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 4px 12px rgba(19, 34, 53, 0.02);
}

summary {
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.02em;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
  transform-origin: 45% 55%;
  transition: transform 160ms ease;
}

details[open] summary::before {
  transform: rotate(45deg);
}

details p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  padding: 22px 0 90px;
}

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

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  font-size: 0.94rem;
}

.footer-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  cursor: pointer;
  font-size: 0.94rem;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 24;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font: inherit;
  font-size: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 10px 24px rgba(19, 34, 53, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.scroll-top::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  border-left: 2.5px solid currentColor;
  border-top: 2.5px solid currentColor;
  transform: rotate(45deg) translateY(2px);
}

.scroll-top:hover {
  background: rgba(255, 255, 255, 0.72);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 30;
  width: min(860px, calc(100vw - 20px));
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(13, 27, 58, 0.24);
  padding: 14px;
}

.cookie-banner-text {
  margin: 0;
  color: var(--ink);
}

.cookie-banner-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.cookie-banner-link {
  color: var(--ink);
  font-weight: 700;
}

.mobile-cta {
  display: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 8px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .hero-headline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-visual--desktop {
    display: none;
  }

  .hero-visual--mobile {
    display: flex;
    margin: 0;
    justify-content: flex-start;
    align-self: start;
  }

  .hero-visual--mobile.hero-visual--home {
    padding: 0;
    width: fit-content;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-visual--home .hero-artwork {
    width: 148px;
    margin: 0;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 22;
    line-height: 0;
  }

  .mobile-cta .app-store-badge {
    width: min(86vw, 230px);
  }

  body {
    padding-bottom: 96px;
  }

  .cookie-banner {
    bottom: calc(100px + env(safe-area-inset-bottom));
  }

  .scroll-top {
    bottom: calc(96px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 600px) {
  .header-inner {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(228, 233, 228, 0.92);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 28px rgba(19, 34, 53, 0.08);
  }

  .site-header.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 12px 6px;
  }

  .main-nav a::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero-grid {
    padding: 18px;
    border-radius: 24px;
  }

  .hero-headline {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .page-hero-grid {
    padding: 16px;
    border-radius: 22px;
  }

  .hero-visual {
    min-height: 0;
    padding: 12px;
  }

  .hero-visual--mobile {
    margin: 0;
    justify-content: flex-start;
  }

  .hero-visual--mobile.hero-visual--home {
    padding: 0;
    border-radius: 0;
  }

  .hero-visual--home .hero-artwork {
    width: 132px;
  }

  .hero-visual--home .hero-artwork img {
    filter: drop-shadow(0 12px 20px rgba(19, 34, 53, 0.08));
  }

  .device-showcase {
    width: min(100%, 240px);
  }

  .comparison-visual,
  .old-device-visual {
    grid-template-columns: 1fr;
  }

  .travel-visual,
  .vs-pill {
    justify-self: center;
  }

  .steps,
  .view-grid,
  .themes-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .compare-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 16px;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .compare-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .compare-table tbody tr {
    display: block;
    border: 1px solid rgba(207, 219, 236, 0.92);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
  }

  .compare-table tbody tr + tr {
    margin-top: 6px;
  }

  .compare-table tbody tr:nth-child(even) {
    background: var(--surface-strong);
  }

  .compare-table th[scope="row"] {
    display: block;
    padding: 12px 14px;
    margin-bottom: 10px;
    border-radius: 14px 14px 0 0;
    background: #edf3ff;
  }

  .compare-table td {
    display: block;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(228, 233, 228, 0.92);
    border-radius: 12px;
  }

  .compare-table tbody tr td + td {
    margin-top: 10px;
  }

  .compare-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
  }

  .compare-table tbody tr td:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 420px) {
  .hero-headline {
    gap: 10px;
  }

  .hero-visual--home .hero-artwork {
    width: 104px;
  }

  h1 {
    max-width: none;
  }
}
