:root {
  --bg: #ffffff;
  --text: #000000;
  --muted: #6f665d;
  --surface: #ffffff;
  --surface-soft: #f6f6f6;
  --line: #e8e8e8;
  --accent: #ff2d55;
  --accent-strong: #d91f48;
  --accent-text: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main,
.site-header,
.site-footer {
  width: min(1140px, calc(100% - 3rem));
  margin: 0 auto;
}

main {
  padding: 54px 0 120px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 14px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background: #ffffff;
  z-index: -1;
  pointer-events: none;
}

.brand,
.nav a {
  color: var(--text);
  text-decoration: none;
}

.brand {
  font-family: "Fraunces", ui-serif, "New York", "Charter", Cambria, Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 0;
  font-weight: 450;
  font-size: 1.22rem;
  letter-spacing: -0.005em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav a {
  color: var(--muted);
}

.section {
  margin-top: 120px;
}

.hero {
  margin-top: 56px;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Fraunces", ui-serif, "New York", "Charter", Cambria, Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 0;
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3.2rem, 9.4vw, 7rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.4rem, 5.8vw, 4rem);
  letter-spacing: -0.016em;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
  font-weight: 650;
}

p,
li {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-subhead {
  max-width: 38ch;
  margin: 22px auto 0;
  color: #3e3831;
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
}

.cta-wrap {
  margin-top: 30px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 30px rgba(255, 45, 85, 0.24);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cta:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(255, 45, 85, 0.3);
}

.layout {
  display: grid;
  gap: 64px;
  align-items: start;
}

.intro {
  max-width: 760px;
}

.intro p,
.text-stack p {
  margin-top: 16px;
}

.feature-grid {
  display: grid;
  gap: 48px;
  margin-top: 56px;
}

.feature-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--text);
  border-radius: 0;
  padding: 28px 0 0;
  box-shadow: none;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(34, 31, 27, 0.04);
}

.feature-card p,
.content-card p,
.content-card ul,
.content-card ol {
  margin-top: 14px;
}

.feature-card h3 {
  font-size: 1.32rem;
  letter-spacing: -0.012em;
}

.text-stack {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.section-visual {
  overflow: hidden;
  border-radius: 0;
  background: var(--surface);
}

.section-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.legal-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.legal-list h2 {
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 54px;
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.footer-grid a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  margin-top: 4px;
}

.footer-tools .footer-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
}

.footer-tools a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-tools a:hover {
  color: var(--text);
}

@media (min-width: 860px) {
  .layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  main,
  .site-header,
  .site-footer {
    width: calc(100% - 1.5rem);
  }

  main {
    padding-top: 28px;
    padding-bottom: 88px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .section {
    margin-top: 78px;
  }

  .feature-card,
  .content-card,
  .section-visual {
    border-radius: 22px;
  }
}
