:root {
  --bg: #fffaf3;
  --panel: #ffffff;
  --text: #151515;
  --muted: #66646d;
  --line: #ece5df;
  --orange: #ff7a11;
  --gold: #ffb319;
  --red: #d0121d;
  --shadow: 0 24px 70px rgba(120, 47, 10, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 179, 25, 0.22), transparent 34rem),
    radial-gradient(circle at 92% 4%, rgba(208, 18, 29, 0.14), transparent 30rem),
    linear-gradient(180deg, #fff7ec 0%, var(--bg) 44%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(208, 18, 29, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 750;
  color: #2a2421;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.button.primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--orange) 50%, var(--red));
  box-shadow: 0 18px 38px rgba(255, 122, 17, 0.26);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 54px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(208, 18, 29, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  color: #7a2e07;
  background: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 800;
}

h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

.lead {
  max-width: 680px;
  color: #4d4642;
  font-size: clamp(18px, 2vw, 23px);
}

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

.phone-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 38px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58));
  box-shadow: var(--shadow);
}

.phone-screen {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 22px;
  background: linear-gradient(180deg, #fff 0%, #fff8ef 100%);
}

.status {
  display: grid;
  gap: 14px;
}

.status-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-top img {
  width: 54px;
  height: 54px;
}

.status-name {
  font-size: 30px;
  font-weight: 900;
}

.ring {
  width: 178px;
  height: 178px;
  margin: 24px auto 12px;
  border: 9px solid var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 54px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.62);
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 18px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}

.progress {
  height: 10px;
  border-radius: 999px;
  background: #e8e2dc;
  overflow: hidden;
}

.progress span {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--orange));
}

.section {
  padding: 58px 0;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(70, 34, 10, 0.06);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--orange), var(--red));
  font-weight: 950;
  margin-bottom: 18px;
}

.policy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 34px;
  align-items: start;
  padding: 32px 0 70px;
}

.policy article {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.policy aside {
  position: sticky;
  top: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.policy aside a {
  display: block;
  padding: 9px 0;
  color: #5b4a42;
  text-decoration: none;
  font-weight: 700;
}

.policy h1 {
  font-size: clamp(40px, 5vw, 66px);
}

.policy h2 {
  margin-top: 36px;
  font-size: 30px;
}

.policy ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--muted);
}

.note {
  border-left: 4px solid var(--orange);
  margin: 22px 0;
  padding: 14px 18px;
  border-radius: 14px;
  color: #4d3220;
  background: #fff3df;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 46px;
  color: var(--muted);
}

@media (max-width: 820px) {
  .hero,
  .policy {
    grid-template-columns: 1fr;
  }

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

  .policy aside {
    position: static;
  }
}
