:root {
  --bg: #ffffff;
  --bg-muted: #f6f7f8;
  --bg-elevated: #ffffff;
  --ink: #111111;
  --ink-muted: #5f6368;
  --line: #e8eaed;
  --accent: #111111;
  --accent-hover: #333333;
  --link: #1a73e8;
  --dark: #111111;
  --dark-elevated: #1f1f1f;
  --on-dark: #ffffff;
  --on-dark-muted: #9aa0a6;
  --radius: 0.75rem;
  --shadow: none;
  --font: "Inter", "Segoe UI", system-ui, sans-serif;
  --space: clamp(1.25rem, 4vw, 2rem);
  --max: 64rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

[v-cloak] {
  display: none;
}

.section-flush {
  padding-top: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--on-dark);
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(calc(100% - 2 * var(--space)), var(--max));
  margin-inline: auto;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.35rem;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 0.375rem;
  padding: 0.4rem 0.65rem;
  font: inherit;
  font-size: 0.875rem;
}

.site-nav ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border: 0;
  border-radius: 0.5rem;
  padding: 0.65rem 1rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--bg-muted);
}

.hero,
.section {
  padding: clamp(2.75rem, 7vw, 4.5rem) 0;
}

.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0;
  background: var(--bg);
}

.hero-photo-frame {
  position: relative;
  width: min(100%, calc(1024px * 1.25));
}

.hero-photo-secondary .hero-photo-frame {
  margin-inline: auto;
}

.hero-photo-secondary {
  flex-direction: column;
  align-items: center;
}

.hero-photo-secondary-title {
  display: block;
  text-align: center;
  margin: 20px auto;
  padding-inline: var(--space);
}

.hero-photo-secondary .hero-photo-image {
  object-position: center;
}

.hero-photo-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: calc(1024px * 1.25);
  max-height: calc(495px * 1.25);
  object-fit: contain;
  object-position: left center;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-photo-copy {
  grid-column: 2;
  align-self: center;
  padding: clamp(1.5rem, 4vw, 3rem) var(--space) clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  max-width: 36rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.16) 14%, rgba(255, 255, 255, 0.24) 100%);
}

.hero-photo-copy .status,
.hero-photo-copy h1,
.hero-photo-copy .lede {
  color: #111111;
}

.hero-photo-copy .lede {
  font-weight: 500;
}

.hero-photo-copy .store-badge {
  margin-top: 0.35rem;
}

.hero-grid,
.split,
.app-grid,
.card-grid,
.feature-grid {
  display: grid;
  gap: 1rem;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2.5rem;
}

.eyebrow,
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.lede {
  font-size: 1.05rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.phone {
  width: min(100%, 17rem);
  margin-inline: auto;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1rem 0.9rem 1.15rem;
  min-height: 22rem;
}

.phone-bar {
  width: 4.5rem;
  height: 0.28rem;
  border-radius: 999px;
  background: var(--line);
  margin: 0 auto 1.1rem;
}

.phone h3 {
  color: var(--ink);
}

.phone p {
  color: var(--ink-muted);
}

.pill-row,
.list {
  display: grid;
  gap: 0.45rem;
}

.pill,
.list span {
  background: var(--bg-muted);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.app-grid,
.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card:hover {
  border-color: #c5c9ce;
  background: var(--bg-muted);
}

.swatch {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

.swatch-evie { background: #111111; }

.card h3 {
  margin-bottom: 0.35rem;
}

.more {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.band {
  background: var(--bg-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.band p,
.band .lede {
  color: var(--ink-muted);
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature {
  padding: 0;
}

.feature h3 {
  color: var(--ink);
}

.store-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  background: #111;
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.65rem 1rem 0.65rem 0.85rem;
}

.store-badge:hover {
  background: #333;
}

.store-badge-logo {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.store-badge-text {
  display: grid;
  line-height: 1.15;
  text-align: left;
}

.store-badge-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}

.store-badge-name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.split {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 2rem;
}

.panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

form {
  display: grid;
  gap: 0.75rem;
}

label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 500;
}

input,
textarea,
select {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: #fff;
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #111;
  outline-offset: 1px;
}

.form-note {
  font-size: 0.8125rem;
}

.muted {
  color: var(--ink-muted);
}

.legal p,
.legal li {
  max-width: 42rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 1.75rem;
  font-size: 0.875rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--ink-muted);
}

.footer-inner a {
  color: var(--ink-muted);
  margin-right: 1rem;
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--ink);
}

.app-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.app-hero .phone {
  margin: 0;
}

@media (max-width: 840px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    inset: 3.5rem var(--space) auto;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.7rem;
  }

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

  .hero-photo-image {
    position: relative;
    height: auto;
  }

  .hero-photo-overlay {
    position: relative;
    display: block;
  }

  .hero-photo-copy {
    grid-column: auto;
    max-width: none;
    padding: 1.5rem var(--space) 2rem;
    background: none;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }
}
