*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0d1b2a;
  --ink-muted: #4a5568;
  --ink-faint: #a0aec0;
  --sky: #0f3460;
  --sky-deep: #081a36;
  --emerald: #22c55e;
  --emerald-dark: #16a34a;
  --emerald-light: #4ade80;
  --orange: #f97316;
  --surface: #f7f9fc;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 20px 56px rgba(13, 27, 42, 0.16);
  --font: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--ink);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 5%;
  background: rgba(247, 249, 252, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(14%) sepia(80%) saturate(700%) hue-rotate(195deg) brightness(85%);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--sky);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sky);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-nav:hover {
  background: var(--sky-deep);
  transform: translateY(-1px);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.1), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(15, 52, 96, 0.08), transparent 55%);
  top: -280px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  animation: blobPulse 8s ease-in-out infinite alternate;
}

@keyframes blobPulse {
  from {
    transform: translateX(-50%) scale(1);
    opacity: 0.7;
  }

  to {
    transform: translateX(-50%) scale(1.1);
    opacity: 1;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--emerald-dark);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.hero h1,
.download-copy h1 {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.08;
  color: var(--sky-deep);
  max-width: 740px;
  letter-spacing: -2px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--emerald);
}

.hero p,
.download-copy p {
  margin-top: 22px;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--ink-muted);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 400;
  animation: fadeUp 0.7s 0.2s ease both;
}

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

.hero-actions {
  justify-content: center;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #fff;
  border: none;
  padding: 16px 34px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(34, 197, 94, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background: transparent;
  color: var(--sky);
  border: 1.5px solid var(--border);
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: var(--sky);
  background: rgba(15, 52, 96, 0.04);
}

.mockup-wrap {
  margin-top: 64px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
  animation: fadeUp 0.9s 0.4s ease both;
  flex-wrap: wrap;
}

.phone-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-shell {
  background: #1a1a1a;
  border-radius: 44px;
  padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 0 1.5px rgba(255, 255, 255, 0.12);
  position: relative;
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

.phone-img {
  display: block;
  border-radius: 36px;
  object-fit: cover;
}

.phone-frame.main .phone-shell {
  transform: scale(1);
}

.phone-frame.side-left .phone-shell {
  transform: rotate(-7deg) translateY(24px);
  opacity: 0.75;
}

.phone-frame.side-right .phone-shell {
  transform: rotate(7deg) translateY(24px);
  opacity: 0.75;
}

.phone-label {
  margin-top: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-faint);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  padding: 100px 5%;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emerald-dark);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  color: var(--sky-deep);
  line-height: 1.12;
  letter-spacing: -1.2px;
}

.section-sub {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--ink-muted);
  font-weight: 400;
  max-width: 520px;
  line-height: 1.75;
}

.centered-section-sub {
  margin: 16px auto 0;
  text-align: center;
}

.compare {
  background: var(--white);
}

.compare-inner,
.features-inner,
.feedback-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.compare-inner {
  text-align: center;
}

.compare-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}

.compare-card {
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: left;
}

.compare-card.problem {
  background: #fff5f5;
  border: 1.5px solid #fed7d7;
}

.compare-card.solution {
  background: linear-gradient(140deg, rgba(15, 52, 96, 0.03), rgba(34, 197, 94, 0.07));
  border: 1.5px solid rgba(34, 197, 94, 0.25);
}

.compare-card h3 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--sky-deep);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.compare-card ul {
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
}

.compare-card li {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.55;
  font-weight: 500;
}

.compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-bubble {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sky-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(13, 27, 42, 0.2);
}

.features {
  background: var(--surface);
}

.features-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.feat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--sky));
  opacity: 0;
  transition: opacity 0.25s;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-card h3 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--sky-deep);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feat-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
  font-weight: 400;
}

.feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  background: rgba(15, 52, 96, 0.06);
  color: var(--sky);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 13px;
  border-radius: 50px;
}

.screens-section {
  background: var(--white);
  padding: 100px 5%;
}

.screens-surface {
  background: var(--surface);
}

.screens-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.screens-inner.reverse {
  direction: rtl;
}

.screens-inner.reverse > * {
  direction: ltr;
}

.screens-text .section-tag {
  display: block;
}

.screens-text h2 {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--sky-deep);
  margin-top: 10px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.screens-text p {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.75;
  font-weight: 400;
  max-width: 420px;
}

.cta-inline {
  margin-top: 28px;
}

.screens-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.screens-shell-large {
  width: 260px;
}

.screens-image-large {
  width: 240px;
}

.feedback {
  padding: 0 5% 100px;
}

.feedback-section {
  padding-top: 100px;
}

.feedback-banner {
  background: linear-gradient(135deg, var(--sky-deep) 0%, #16213e 55%, #0f3460 100%);
  border-radius: 26px;
  padding: 64px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.feedback-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.07);
  pointer-events: none;
}

.feedback-banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 25%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.05);
  pointer-events: none;
}

.feedback-text .section-tag {
  color: var(--emerald-light);
}

.feedback-text h2 {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff;
  line-height: 1.18;
  letter-spacing: -1px;
  margin-top: 8px;
  margin-bottom: 14px;
}

.feedback-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  max-width: 440px;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 360px);
  position: relative;
  z-index: 1;
}

.feedback-form input,
.feedback-form textarea {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  color: #fff;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.feedback-form textarea {
  min-height: 110px;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: var(--emerald-light);
}

.feedback-note {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.feedback-note a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.feedback-note a:hover {
  text-decoration: underline;
}

.form-status {
  min-height: 1.3rem;
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.form-status.is-error {
  color: #fecaca;
}

.form-status.is-success {
  color: #bbf7d0;
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), #ea580c);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(249, 115, 22, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.45);
}

.download-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.delete-account-page,
.privacy-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.download-main {
  flex: 1;
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}

.delete-account-main,
.privacy-main {
  flex: 1;
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}

.download-blob {
  top: -220px;
}

.delete-account-blob,
.privacy-blob {
  top: -220px;
}

.download-panel {
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 32px;
  padding: 52px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.delete-account-panel {
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 32px;
  padding: 52px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.download-panel::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.08);
}

.delete-account-panel::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.08);
}

.delete-account-copy {
  position: relative;
  z-index: 1;
}

.delete-account-copy h1 {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--sky-deep);
  max-width: 640px;
  letter-spacing: -2px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.delete-account-copy > p {
  margin-top: 22px;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--ink-muted);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 400;
  animation: fadeUp 0.7s 0.2s ease both;
}

.delete-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  list-style: none;
  animation: fadeUp 0.7s 0.3s ease both;
}

.delete-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, rgba(247, 249, 252, 0.96), rgba(240, 244, 248, 0.9));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.delete-steps h2 {
  font-size: 1rem;
  line-height: 1.25;
  color: var(--sky-deep);
  letter-spacing: -0.3px;
}

.delete-steps p {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.delete-account-preview {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.25s ease both;
}

.delete-account-shell {
  width: 280px;
}

.delete-account-image {
  width: 260px;
}

.privacy-panel {
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 32px;
  padding: 52px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.privacy-panel::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.08);
}

.privacy-header,
.privacy-grid {
  position: relative;
  z-index: 1;
}

.privacy-header {
  max-width: 820px;
}

.privacy-header h1 {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--sky-deep);
  letter-spacing: -2px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.privacy-header p {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.8;
}

.privacy-updated {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 52, 96, 0.06);
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-top: 42px;
}

.privacy-summary {
  position: sticky;
  top: 100px;
  padding: 26px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(247, 249, 252, 0.98), rgba(240, 244, 248, 0.9));
}

.privacy-summary h2 {
  color: var(--sky-deep);
  font-size: 1.1rem;
  letter-spacing: -0.3px;
}

.privacy-summary ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 24px 18px;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  font-weight: 500;
}

.privacy-pdf-link {
  width: 100%;
  padding: 12px 18px;
  font-size: 0.82rem;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.privacy-section {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.privacy-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.privacy-section h2 {
  color: var(--sky-deep);
  font-size: 1.2rem;
  line-height: 1.35;
  letter-spacing: -0.4px;
}

.privacy-section p,
.privacy-list {
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.privacy-list {
  margin-left: 20px;
}

.privacy-list li + li {
  margin-top: 8px;
}

.privacy-note {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.privacy-contact a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--emerald-dark);
  font-weight: 800;
  text-decoration: none;
}

.privacy-contact a:hover {
  text-decoration: underline;
}

.download-store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
}

.store-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 250px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  text-decoration: none;
  color: var(--sky-deep);
  background: linear-gradient(160deg, rgba(247, 249, 252, 0.96), rgba(240, 244, 248, 0.9));
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 52, 96, 0.2);
}

.store-card.android {
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.12), rgba(247, 249, 252, 0.96));
}

.store-card.ios {
  background: linear-gradient(160deg, rgba(15, 52, 96, 0.1), rgba(247, 249, 252, 0.96));
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.store-card h2 {
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.store-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.store-button {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--sky-deep);
  color: #fff;
  font-weight: 700;
}

.store-card.android .store-button {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
}

.store-card.ios .store-button {
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
}

.download-note {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-muted);
  text-align: center;
}

footer {
  background: var(--sky-deep);
  color: rgba(255, 255, 255, 0.55);
  padding: 52px 5% 32px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.82rem;
  line-height: 1.65;
  max-width: 240px;
  font-weight: 400;
}

.footer-links h4 {
  color: #fff;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links li a:hover {
  color: var(--emerald-light);
}

.footer-bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  font-weight: 500;
}

.made-sv {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
  .screens-inner,
  .download-panel,
  .delete-account-panel,
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .screens-inner,
  .download-panel,
  .delete-account-panel {
    text-align: center;
  }

  .screens-inner.reverse {
    direction: ltr;
  }

  .screens-text p,
  .download-copy p,
  .delete-account-copy > p {
    max-width: none;
  }

  .privacy-summary {
    position: static;
  }

  .delete-steps {
    text-align: left;
  }

  .screens-phone .phone-shell {
    width: 200px;
  }

  .screens-phone .phone-img {
    width: 180px;
  }

  .download-store-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  nav {
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

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

  .compare-divider {
    transform: rotate(90deg);
  }

  .feedback-banner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }

  .footer-top {
    flex-direction: column;
  }

  .phone-frame.side-left,
  .phone-frame.side-right {
    display: none;
  }

  .page-nav-actions,
  .hero-actions,
  .download-actions {
    width: 100%;
  }

  .page-nav-actions .btn-ghost,
  .page-nav-actions .btn-nav,
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost,
  .download-actions .btn-primary,
  .download-actions .btn-ghost {
    width: 100%;
  }

  .download-main {
    padding-top: 120px;
  }

  .delete-account-main,
  .privacy-main {
    padding-top: 120px;
  }

  .download-panel,
  .delete-account-panel,
  .privacy-panel {
    padding: 40px 28px;
  }

  .store-card {
    min-height: 220px;
  }
}
