:root {
  --bg: #fff9f1;
  --card: #ffffff;
  --ink: #211a16;
  --muted: #6e625b;
  --brand: #ff7a59;
  --brand-dark: #c94f34;
  --accent: #ffe3d8;
  --line: #eadfd7;
  --shadow: 0 24px 60px rgba(64, 42, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 197, 143, 0.45), transparent 32rem),
    linear-gradient(180deg, #fff9f1 0%, #fffaf6 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header,
.site-footer,
.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 16px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 122, 89, 0.28);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 44px;
  align-items: center;
  padding: 58px 0 78px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  margin-top: 18px;
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(33, 26, 22, 0.16);
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.phone-card,
.card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.phone-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.phone-card::before {
  position: absolute;
  inset: auto -40px -60px auto;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.mini-profile {
  position: relative;
  display: grid;
  gap: 18px;
}

.friend-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
}

.avatar {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 18px;
  background: #ffe4bd;
  font-weight: 900;
}

.friend-row:nth-child(2) .avatar {
  background: #d9f3ff;
}

.friend-row:nth-child(3) .avatar {
  background: #e4e1ff;
}

.friend-name {
  font-weight: 850;
}

.friend-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 34px 0;
}

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

.card {
  padding: 24px;
}

.card p {
  margin-top: 12px;
  color: var(--muted);
}

.page-hero {
  padding: 52px 0 30px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.policy-card {
  padding: clamp(24px, 5vw, 54px);
  margin: 28px 0 70px;
}

.policy-card h2 {
  margin-top: 42px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card h3 {
  margin-top: 28px;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

.policy-card p,
.policy-card ul {
  margin-top: 14px;
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.contact-box {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  background: var(--ink);
  color: #fff;
}

.contact-box a {
  color: #fff;
  text-decoration: underline;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 0 46px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

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

  .hero {
    padding-top: 30px;
  }
}
