@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  color-scheme: light;
  --ink: #281522;
  --muted: #756572;
  --panel: rgba(255, 255, 255, 0.78);
  --line: rgba(117, 65, 104, 0.14);
  --rose: #ff6fa8;
  --rose-soft: #ffd2e3;
  --coral: #ffad91;
  --mint: #41cdb6;
  --lavender: #a68cff;
  --cream: #fff7ea;
  --shadow: 0 28px 90px rgba(177, 103, 145, 0.24);
  font-family: 'Space Grotesk', 'Avenir Next', sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 111, 168, 0.28), transparent 30rem),
    radial-gradient(circle at 82% 16%, rgba(166, 140, 255, 0.2), transparent 29rem),
    radial-gradient(circle at 54% 72%, rgba(65, 205, 182, 0.16), transparent 36rem),
    linear-gradient(135deg, #fffaf4 0%, #fff1f7 44%, #f4efff 100%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.hero-panel {
  width: min(1120px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 38px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 111, 168, 0.18), transparent 32rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 226, 239, 0.44));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 84px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(255, 111, 168, 0.18));
}

.status-pill {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 34px;
  padding: clamp(28px, 5vw, 64px);
}

.eyebrow,
.modal-eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0 0 18px;
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 8vw, 7.6rem);
}

h2 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
}

.hero-copy p:not(.eyebrow),
.ios-card p:not(.modal-eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #2c121e;
  background: linear-gradient(135deg, var(--rose-soft), var(--coral));
  box-shadow: 0 18px 42px rgba(255, 143, 178, 0.28);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.qr-card {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.6);
}

.qr-frame {
  display: grid;
  width: min(300px, 100%);
  aspect-ratio: 1;
  place-items: center;
  padding: 14px;
  border-radius: 24px;
  background: #ffffff;
}

.qr-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-copy {
  display: grid;
  gap: 5px;
  max-width: 300px;
  text-align: center;
}

.qr-copy strong {
  color: var(--ink);
}

.qr-copy span {
  color: var(--muted);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(40, 21, 34, 0.28);
  backdrop-filter: blur(18px);
}

.modal-backdrop.is-visible {
  display: grid;
}

.ios-card {
  position: relative;
  width: min(440px, 100%);
  padding: 36px 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 111, 168, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 231, 241, 0.86));
  box-shadow: var(--shadow);
  text-align: center;
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.logo-orbit {
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 38px;
  background: linear-gradient(145deg, var(--cream), var(--rose-soft));
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.38), 0 20px 54px rgba(255, 143, 178, 0.3);
}

.logo-orbit img {
  width: 92px;
  height: 70px;
  object-fit: contain;
}

.modal-mail {
  width: 100%;
  margin-top: 18px;
}

@media (max-width: 820px) {
  .page-shell {
    padding: 12px;
  }

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

  .action-row .btn {
    width: 100%;
  }
}
