:root {
  color-scheme: light;
  --bg: #f7f7f3;
  --band: #eef5f4;
  --surface: #ffffff;
  --text: #111211;
  --muted: #687071;
  --primary: #285c74;
  --primary-soft: #dce9ec;
  --mint: #73ad91;
  --mint-soft: #e8f4ed;
  --green-soft: #e6f3e8;
  --amber: #b9852c;
  --amber-soft: #f7ecd9;
  --lilac: #9586bd;
  --lilac-soft: #efebf7;
  --coral: #d16357;
  --line: #e3e5df;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header,
.site-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 18px 24px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
}

.brand img {
  border-radius: 8px;
  height: 36px;
  width: 36px;
}

nav,
.site-footer div {
  display: flex;
  gap: 18px;
}

nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

nav a[aria-current="page"],
nav a:hover,
.site-footer a:hover {
  color: var(--primary);
}

.hero {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  margin: 0 auto;
  max-width: 1120px;
  min-height: calc(100vh - 96px);
  padding: 56px 24px 72px;
}

.hero-copy {
  max-width: 680px;
  animation: site-fade-up 700ms cubic-bezier(0.2, 0, 0, 1) both;
}

.eyebrow {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.05rem;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 640px;
}

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

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  min-height: 48px;
  padding: 0 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(40, 92, 116, 0.18);
  color: #ffffff;
}

.button.secondary {
  background: var(--primary-soft);
  color: var(--primary);
}

.phone-preview {
  animation: site-fade-up 820ms 120ms cubic-bezier(0.2, 0, 0, 1) both;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 235, 247, 0.72)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(40, 92, 116, 0.16);
  justify-self: center;
  max-width: 360px;
  overflow: hidden;
  padding: 22px;
  position: relative;
  width: 100%;
}

.phone-preview::before {
  animation: glow-pulse 2.8s ease-in-out infinite;
  background: radial-gradient(circle, rgba(115, 173, 145, 0.28), rgba(115, 173, 145, 0) 68%);
  content: "";
  height: 220px;
  position: absolute;
  right: -88px;
  top: -88px;
  width: 220px;
}

.phone-bar {
  background: #111211;
  border-radius: 8px;
  height: 8px;
  margin: 0 auto 28px;
  width: 82px;
}

.app-icon-large {
  border-radius: 8px;
  display: block;
  height: 68px;
  width: 68px;
}

.preview-topline {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.status-pill {
  background: var(--amber-soft);
  border: 1px solid rgba(185, 133, 44, 0.18);
  border-radius: 999px;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 850;
  padding: 7px 10px;
}

.phone-preview h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.preview-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(40, 92, 116, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding: 14px;
  position: relative;
  z-index: 1;
}

.active-card {
  animation: card-float 3.4s ease-in-out infinite;
  box-shadow: 0 14px 34px rgba(40, 92, 116, 0.10);
}

.preview-label {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.price-tag {
  background: var(--amber-soft);
  border-radius: 8px;
  color: var(--amber);
  font-weight: 900;
  padding: 5px 8px;
  position: absolute;
  right: 14px;
  top: 14px;
}

.cooldown-bar {
  background: var(--primary-soft);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}

.cooldown-bar span {
  animation: cooldown-fill 2.8s cubic-bezier(0.2, 0, 0, 1) infinite;
  background: linear-gradient(90deg, var(--mint), var(--primary));
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 72%;
}

.preview-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(40, 92, 116, 0.06);
  border-radius: 8px;
  display: flex;
  font-weight: 750;
  gap: 12px;
  margin-top: 8px;
  padding: 10px;
  position: relative;
  z-index: 1;
}

.row-icon {
  align-items: center;
  background: var(--primary-soft);
  border-radius: 8px;
  color: var(--primary);
  display: inline-flex;
  flex: 0 0 34px;
  font-weight: 850;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.preview-row.mint .row-icon {
  background: var(--mint-soft);
  color: #47765f;
}

.preview-row.amber .row-icon {
  background: var(--amber-soft);
  color: var(--amber);
}

.preview-row.lilac .row-icon {
  background: var(--lilac-soft);
  color: var(--lilac);
}

.content-band,
.split-band,
.page-shell {
  margin: 0 auto;
  max-width: 1120px;
  padding: 80px 24px;
}

.content-band {
  background: transparent;
}

.content-band.compact {
  padding-top: 28px;
}

.section-heading {
  max-width: 760px;
}

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

.feature-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.support-item,
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.feature-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  box-shadow: 0 14px 34px rgba(40, 92, 116, 0.08);
  transform: translateY(-2px);
}

.mint-card {
  background: linear-gradient(145deg, var(--surface), var(--mint-soft));
}

.amber-card {
  background: linear-gradient(145deg, var(--surface), var(--amber-soft));
}

.lilac-card {
  background: linear-gradient(145deg, var(--surface), var(--lilac-soft));
}

.feature-card p,
.support-item p,
.contact-panel p,
.copy-block p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-band {
  align-items: start;
  background: var(--band);
  border-radius: 8px;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  margin-bottom: 36px;
  margin-top: 36px;
}

.copy-block {
  display: grid;
  gap: 14px;
}

.page-title {
  max-width: 800px;
  padding-bottom: 28px;
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-item h2,
.contact-panel h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.contact-panel {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  margin-top: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero,
  .feature-grid,
  .feature-grid.two,
  .split-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
    min-height: auto;
    padding-top: 36px;
  }

  .content-band,
  .split-band,
  .page-shell {
    padding-bottom: 52px;
    padding-top: 52px;
  }
}

@keyframes site-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.94);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes cooldown-fill {
  0% {
    transform: translateX(-18%);
  }

  55%,
  100% {
    transform: translateX(0);
  }
}

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