﻿/* Taps static website draft */
:root {
  --ink: #17121f;
  --muted: #645c72;
  --soft: #f7f2ff;
  --paper: #fffdf8;
  --line: rgba(58, 37, 93, 0.16);
  --purple: #6f42d8;
  --purple-deep: #3a245d;
  --violet: #bca7ff;
  --sun: #ffd166;
  --mint: #b8f2dc;
  --danger: #b42332;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(44, 27, 75, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(188, 167, 255, 0.55), transparent 34rem),
    radial-gradient(circle at 90% 12%, rgba(255, 209, 102, 0.38), transparent 30rem),
    linear-gradient(135deg, #fffaf0 0%, #f5efff 52%, #eefbf6 100%);
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(58, 36, 93, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 36, 93, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}

.header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--purple-deep);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.45rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: white;
  background: linear-gradient(135deg, var(--purple), #2c1748);
  box-shadow: 0 12px 28px rgba(111, 66, 216, 0.25);
  font-family: Arial, sans-serif;
  font-weight: 900;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

nav a {
  color: var(--purple-deep);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  padding: 10px 12px;
  border-radius: 999px;
}

nav a:hover,
nav a[aria-current='page'] {
  background: rgba(111, 66, 216, 0.11);
}

.hero,
.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 34px auto;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 40px;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  padding: clamp(28px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  overflow: hidden;
  position: relative;
}

.hero-card::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(184, 242, 220, 0.72);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(111, 66, 216, 0.12);
  color: var(--purple-deep);
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  color: var(--purple-deep);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 0;
}

h1 {
  font-size: clamp(3.4rem, 10vw, 8.2rem);
  margin-top: 22px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.lede {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  color: var(--muted);
  max-width: 720px;
  margin: 24px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: 800;
  color: var(--purple-deep);
  background: rgba(255, 255, 255, 0.64);
}

.button.primary {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
}

.phone-card {
  position: relative;
  z-index: 1;
  align-self: center;
  min-height: 420px;
  padding: 22px;
  border-radius: 38px;
  background: linear-gradient(160deg, #221832, #392057 52%, #7251c9);
  color: white;
  box-shadow: 0 30px 70px rgba(58, 36, 93, 0.32);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.72);
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}

.plan-stack {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.plan-pill {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.11);
}

.plan-pill strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.plan-pill span {
  color: rgba(255,255,255,0.72);
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.info-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 12px 36px rgba(44, 27, 75, 0.08);
}

.policy-card {
  margin-bottom: 18px;
}

.info-card p,
.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.62;
  font-size: 1rem;
}

.policy-card ul,
.policy-card ol {
  padding-left: 22px;
}

.page-title {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(26px, 5vw, 52px);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(111, 66, 216, 0.1);
  color: var(--purple-deep);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.notice {
  border-left: 5px solid var(--purple);
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(111, 66, 216, 0.09);
  color: var(--purple-deep);
  line-height: 1.55;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 60px auto 0;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--purple-deep);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 820px) {
  .header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

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

  .phone-card {
    min-height: 320px;
  }
}
