@font-face {
  font-family: "Comfortaa";
  src: url("/comfortaa.ttf") format("truetype");
  font-display: swap;
  font-weight: 300 700;
}

:root {
  --ink: #2c2c2c;
  --muted: #6b6b6b;
  --paper: #fffcf9;
  --sand: #f5ede4;
  --sand-deep: #d4b8a0;
  --clay: #c9a47f;
  --blue: #eaf1f8;
  --blue-strong: #7b9dbe;
  --green: #e8f4ef;
  --green-strong: #7ac9b0;
  --line: #e5e0db;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(168, 213, 198, .22), transparent 24rem),
    radial-gradient(circle at 8% 42%, rgba(232, 195, 158, .22), transparent 27rem),
    var(--paper);
  font-family: "Comfortaa", sans-serif;
  line-height: 1.55;
}

.header, main, footer { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.header {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: inline-flex; }
.brand img { width: 203px; height: auto; }

.status {
  padding: 10px 16px;
  color: #6e553b;
  background: rgba(245, 237, 228, .88);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 68px;
  align-items: center;
  padding: 56px 0 90px;
}

.eyebrow {
  margin: 0 0 20px;
  color: #967555;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1, h2, h3, p { text-wrap: balance; }
h1, h2, h3 { margin-top: 0; line-height: 1.16; }

h1 {
  margin-bottom: 28px;
  font-size: clamp(46px, 5.4vw, 76px);
  letter-spacing: -.045em;
}

h1 em { color: #b78e66; font-style: normal; font-weight: 400; }

.lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
}

.availability {
  width: fit-content;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 34px;
  padding: 13px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(99, 74, 50, .07);
  font-size: 14px;
}

.availability__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-strong);
  box-shadow: 0 0 0 5px var(--green);
}

.portrait {
  min-height: 550px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 127, .26);
  border-radius: 64px 64px 180px 64px;
  background: linear-gradient(155deg, rgba(255,255,255,.9), rgba(245,237,228,.82));
  box-shadow: 0 32px 90px rgba(91, 70, 49, .11);
}

.orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb--one { width: 320px; height: 320px; right: -80px; top: -50px; background: rgba(168, 213, 198, .42); }
.orb--two { width: 250px; height: 250px; left: -85px; bottom: -75px; background: rgba(232, 195, 158, .5); }

.phone-card {
  width: 72%;
  min-height: 192px;
  position: absolute;
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.9);
  backdrop-filter: blur(15px);
  box-shadow: 0 18px 50px rgba(69, 55, 42, .12);
}

.phone-card--audit { left: 9%; top: 14%; transform: rotate(-4deg); }
.phone-card--routine { right: 8%; bottom: 14%; transform: rotate(4deg); background: rgba(234, 241, 248, .92); }
.phone-card strong { grid-column: 1 / -1; max-width: 330px; font-size: 20px; line-height: 1.35; }
.card-index { color: var(--clay); font-size: 13px; font-weight: 700; }
.card-label { color: var(--muted); font-size: 12px; }
.sparkle { position: absolute; right: 13%; top: 45%; color: var(--clay); font-size: 38px; }

.features { padding: 110px 0; border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; margin-bottom: 54px; }
.section-heading h2, .closing h2 { margin: 0; font-size: clamp(34px, 4vw, 55px); letter-spacing: -.035em; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.feature {
  min-height: 320px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--sand);
}

.feature--blue { background: var(--blue); border-color: #d9e5f0; }
.feature--green { background: var(--green); border-color: #d5e9e1; }
.feature span { margin-bottom: auto; color: #a88f74; font-size: 13px; font-weight: 700; }
.feature h3 { margin-bottom: 12px; font-size: 22px; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

.closing {
  margin-block: 40px 110px;
  padding: 58px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: end;
  border-radius: 48px;
  color: #fff;
  background: #2f4a47;
}

.closing .eyebrow { color: #b9ddcf; }
.closing p:last-child { margin: 0; color: rgba(255,255,255,.75); }

footer {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

footer p { margin: 0; }
footer a { justify-self: end; color: var(--ink); text-decoration: none; }

@media (max-width: 800px) {
  .header, main, footer { width: min(100% - 32px, 600px); }
  .header { min-height: 88px; }
  .brand img { width: 164px; }
  .status { padding: 8px 12px; font-size: 11px; }
  .hero { grid-template-columns: 1fr; gap: 46px; padding: 48px 0 70px; }
  .portrait { min-height: 470px; border-radius: 42px 42px 130px 42px; }
  .phone-card { width: 78%; min-height: 170px; padding: 22px; }
  .phone-card strong { font-size: 17px; }
  .features { padding: 76px 0; }
  .section-heading, .closing { grid-template-columns: 1fr; gap: 26px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: 240px; }
  .closing { padding: 36px 26px; margin-bottom: 70px; border-radius: 34px; }
  footer { padding: 32px 0; grid-template-columns: 1fr; gap: 16px; }
  footer a { justify-self: start; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__copy { animation: enter .75s ease-out both; }
  .portrait { animation: enter .75s .12s ease-out both; }
  @keyframes enter { from { opacity: 0; transform: translateY(18px); } }
}
