:root {
  --background: #f2f0e8;
  --surface: rgba(255, 253, 245, 0.56);
  --ink: #10231e;
  --ink-muted: #55665d;
  --sage: #c6d3c0;
  --accent: #bc6e4a;
  --line: rgba(16, 35, 30, 0.12);
  --shadow: 0 30px 70px rgba(29, 45, 38, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 34px clamp(24px, 6vw, 76px) 30px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 42%, #dbe3d2 0 12%, transparent 39%),
    radial-gradient(circle at 12% 92%, #ece1d3 0 7%, transparent 39%),
    var(--background);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
  background-image: radial-gradient(rgba(16, 35, 30, 0.15) 0.6px, transparent 0.6px);
  background-size: 5px 5px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.site-header,
.site-footer {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 20px;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #628259;
  box-shadow: 0 0 0 5px rgba(98, 130, 89, 0.12);
}

.hero {
  width: min(1240px, 100%);
  margin: auto;
  padding: clamp(62px, 10vh, 110px) 0;
  display: grid;
  grid-template-columns: minmax(350px, 1fr) minmax(320px, 422px);
  align-items: center;
  gap: clamp(52px, 9vw, 138px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(66px, 7.1vw, 108px);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

h1 span {
  display: block;
  color: var(--accent);
  font-style: italic;
}

.lead {
  max-width: 492px;
  margin: 32px 0 44px;
  color: var(--ink-muted);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.75;
}

.actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 31px;
  border-radius: 100px;
  color: #f7f5ed;
  background: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #1e3a32;
  box-shadow: 0 14px 26px rgba(16, 35, 30, 0.18);
}

.launch-note {
  color: var(--ink-muted);
  font-size: 14px;
}

.preview-card {
  min-height: 526px;
  padding: 29px 29px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card-top {
  display: flex;
  justify-content: space-between;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.orb {
  position: relative;
  height: 222px;
  display: grid;
  place-items: center;
}

.orb-ring {
  position: absolute;
  width: 222px;
  height: 222px;
  border: 1px solid rgba(16, 35, 30, 0.07);
  border-radius: 50%;
}

.orb-ring::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(16, 35, 30, 0.08);
  border-radius: inherit;
}

.orb-core {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.74), transparent 38%),
    linear-gradient(135deg, #b66743, #cd8660);
  box-shadow: 0 22px 32px rgba(188, 110, 74, 0.3);
}

.card-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.card-bottom p {
  max-width: 245px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.7;
}

.arrow {
  font-size: 27px;
  font-weight: 300;
}

.site-footer {
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink-muted);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
}

@media (max-width: 900px) {
  body {
    padding-top: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: clamp(62px, 10vh, 88px) 0 52px;
  }

  .preview-card {
    min-height: 410px;
  }
}

@media (max-width: 560px) {
  body {
    padding-inline: 20px;
  }

  .status {
    padding: 10px 13px;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(54px, 17vw, 70px);
  }

  .lead {
    margin-block: 27px 36px;
  }

  .actions,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .preview-card {
    min-height: 370px;
    padding: 24px;
  }

  .orb {
    height: 175px;
  }

  .orb-ring {
    width: 175px;
    height: 175px;
  }

  .orb-core {
    width: 98px;
    height: 98px;
  }
}
