:root {
  --primary: #00afb9;
  --primary-dark: #0081a7;
  --coral: #f07167;
  --coral-soft: #ffd9d6;
  --surface: #fdfcdc;
  --surface-soft: #fffef0;
  --on-surface: #1a1a2e;
  --muted: #4a4a6a;
  --card: #ffffff;
  --border: #e8e8d8;
  --shadow: rgba(0, 129, 167, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(circle at 84% 9%, rgba(240, 113, 103, 0.14), transparent 26rem),
    radial-gradient(circle at 8% 16%, rgba(0, 175, 185, 0.14), transparent 28rem),
    linear-gradient(180deg, var(--surface-soft), var(--surface));
  color: var(--on-surface);
  line-height: 1.6;
}

a {
  color: var(--primary-dark);
}

header {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 10;
}

header .wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary-dark);
  text-decoration: none;
}

.logo img {
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 129, 167, 0.12);
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

nav a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

nav a:hover {
  color: var(--primary-dark);
}

main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 24px 64px;
}

h1,
h2,
p {
  letter-spacing: 0;
}

h1 {
  color: var(--primary-dark);
  font-size: clamp(2.15rem, 6vw, 4.8rem);
  line-height: 1.02;
  margin: 0 0 18px;
}

h2 {
  color: var(--primary-dark);
  font-size: 1.2rem;
  line-height: 1.22;
  margin: 0 0 10px;
}

.subtitle {
  color: var(--muted);
  font-size: 1.16rem;
  margin: 0 0 28px;
  max-width: 660px;
}

.eyebrow {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: center;
  min-height: 560px;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 30px var(--shadow);
  font-weight: 750;
  padding: 12px 20px;
  text-decoration: none;
}

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

.btn-outline {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 129, 167, 0.28);
  box-shadow: none;
  color: var(--primary-dark);
}

.app-preview {
  position: relative;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(0, 129, 167, 0.18);
  border-radius: 30px;
  box-shadow: 0 24px 60px var(--shadow);
  overflow: hidden;
  padding: 28px;
}

.app-preview::before {
  content: "";
  position: absolute;
  inset: -35% -35% auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(240, 113, 103, 0.18), transparent 68%);
  z-index: -1;
}

.app-icon-large {
  display: block;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(0, 129, 167, 0.18);
  margin: 0 auto 24px;
}

.route-line {
  width: 76%;
  height: 44px;
  border-top: 5px dashed rgba(0, 175, 185, 0.52);
  border-radius: 50%;
  margin: 0 auto -4px;
}

.journey-card {
  border-radius: 26px;
  padding: 26px;
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 20px 34px rgba(0, 129, 167, 0.18);
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  padding: 6px 12px;
}

.journey-card h2 {
  color: white;
  font-size: 2rem;
  margin: 18px 0 8px;
}

.journey-card p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 16px;
}

.capture-pill {
  display: block;
  width: 100%;
  background: var(--coral);
  border-radius: 18px;
  color: white;
  font-weight: 800;
  padding: 14px 18px;
  text-align: center;
}

.moment-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  margin: 18px 10px 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(26, 26, 46, 0.08);
  padding: 16px;
}

.moment-card strong {
  color: var(--primary-dark);
}

.moment-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.moment-card p {
  grid-column: 1 / -1;
  color: var(--muted);
  margin: 0;
}

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

.card,
.soft-panel {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(26, 26, 46, 0.05);
  padding: 24px;
}

.card {
  margin-bottom: 20px;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(0, 175, 185, 0.08);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--coral-soft);
  border-radius: 13px;
  color: #8f2c29;
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 18px;
}

.card p:last-child,
.card ol:last-child,
.card ul:last-child,
.soft-panel p:last-child,
.soft-panel ul:last-child {
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 28px;
}

.split-section > div:first-child {
  padding: 12px 0;
}

.link-list,
.check-list {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.35rem;
}

.page-intro {
  margin-bottom: 28px;
  max-width: 760px;
}

.support-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.email {
  font-size: 1.12rem;
  font-weight: 800;
  word-break: break-all;
}

.fine-print {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 14px;
}

footer {
  background: rgba(255, 255, 255, 0.48);
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
  padding: 26px 24px;
  text-align: center;
}

@media (max-width: 780px) {
  header {
    padding: 12px 18px;
  }

  header .wrap,
  nav,
  .actions {
    gap: 10px;
  }

  nav a {
    font-size: 0.88rem;
  }

  main {
    padding: 36px 18px 52px;
  }

  .hero,
  .feature-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .app-preview {
    padding: 20px;
  }

  .support-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-hero .btn {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .logo span {
    display: none;
  }

  nav {
    gap: 9px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .subtitle {
    font-size: 1.04rem;
  }
}
