@font-face {
  font-family: "Sora";
  src: url("assets/fonts/Sora/Sora-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/Space_Grotesk/SpaceGrotesk-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fff4ed;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --ink: #151321;
  --muted: #635f74;
  --line: #e8dcd4;
  --orange: #ff6a3d;
  --pink: #ff4a91;
  --blue: #2b7fff;
  --yellow: #ffd644;
  --content: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 106, 61, 0.22), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(43, 127, 255, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(255, 247, 241, 0.95), rgba(255, 240, 234, 0.98));
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.content-shell {
  min-height: 100vh;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(255, 106, 61, 0.2);
}

.brand__wordmark {
  width: 178px;
  max-width: 42vw;
}

.header-link,
.footer-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-link:hover,
.footer-link:hover {
  color: var(--ink);
}

.content-main {
  padding-bottom: 28px;
}

.hero-card,
.content-card,
.site-footer__inner {
  border: 1px solid rgba(232, 220, 212, 0.92);
  background: var(--surface);
  box-shadow: 0 20px 46px rgba(21, 19, 33, 0.08);
}

.hero-card {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
    linear-gradient(
      135deg,
      rgba(255, 106, 61, 0.14),
      rgba(255, 74, 145, 0.08),
      rgba(43, 127, 255, 0.08)
    );
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(232, 220, 212, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h1 {
  margin: 18px 0 10px;
  max-width: 11ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-card p,
.content-card p,
.content-card li,
.site-footer__copy span {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.content-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.content-card {
  padding: 24px;
  border-radius: 24px;
}

.content-card h2,
.content-card h3 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.content-card h2 {
  font-size: 30px;
  line-height: 1;
}

.content-card h3 {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.05;
}

.content-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.content-card li + li,
.content-card p + p,
.content-card p + h3,
.content-card ul + h3 {
  margin-top: 10px;
}

.content-note {
  color: var(--ink);
  font-weight: 700;
}

.site-footer {
  padding: 0 0 40px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 24px;
}

.site-footer__copy {
  display: grid;
  gap: 4px;
}

.site-footer__copy strong {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

  .hero-card,
  .content-card {
    padding: 20px;
  }

  .hero-card h1 {
    max-width: 10ch;
  }
}
