:root {
  --cream: #f7f3e9;
  --cream-deep: #eee8da;
  --ink: #1c2722;
  --muted: #657169;
  --sage: #557565;
  --sage-deep: #345345;
  --sage-soft: #e4ece4;
  --coral: #d77c61;
  --yellow: #e8c765;
  --line: rgba(28, 39, 34, 0.13);
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(49, 71, 59, 0.11);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

img { max-width: 100%; }

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: var(--ink);
  color: white;
}

.skip-link:focus { top: 1rem; }

.site-header {
  width: min(calc(100% - 2rem), 1180px);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 780;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img {
  width: 37px;
  height: 37px;
  border-radius: 11px;
}

.site-header nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.site-header nav a,
.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--sage-deep); }

.shell {
  width: min(calc(100% - 2rem), 1180px);
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - 76px);
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(5rem, 10vw, 9rem);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 810px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 9vw, 8rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.hero h1 span { color: var(--sage); }

.hero-copy > p:not(.eyebrow),
.page-hero .lede {
  max-width: 650px;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.hero-note {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--sage-deep);
  font-size: 0.86rem;
  font-weight: 650;
}

.hero-note::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--coral);
}

.assistant-orbit {
  min-height: 510px;
  padding: clamp(1.25rem, 3vw, 2rem);
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(85, 117, 101, 0.18);
  border-radius: 50% 44% 48% 46%;
  background:
    radial-gradient(circle at 30% 25%, rgba(232, 199, 101, 0.34), transparent 23%),
    radial-gradient(circle at 70% 80%, rgba(215, 124, 97, 0.24), transparent 25%),
    var(--sage-soft);
  box-shadow: var(--shadow);
}

.assistant-center {
  width: min(72%, 330px);
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 50px rgba(52, 83, 69, 0.15);
}

.assistant-center img {
  width: 56px;
  height: 56px;
  border-radius: 17px;
}

.assistant-center span {
  display: block;
  margin-top: 1.1rem;
  color: var(--sage);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.assistant-center strong {
  display: block;
  margin-top: 0.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.orbit-label {
  position: absolute;
  padding: 0.62rem 0.85rem;
  border: 1px solid rgba(52, 83, 69, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--sage-deep);
  font-size: 0.76rem;
  font-weight: 720;
  box-shadow: 0 9px 24px rgba(52, 83, 69, 0.1);
}

.orbit-label:nth-of-type(1) { top: 10%; left: 7%; transform: rotate(-4deg); }
.orbit-label:nth-of-type(2) { top: 20%; right: 3%; transform: rotate(3deg); }
.orbit-label:nth-of-type(3) { bottom: 20%; left: 3%; transform: rotate(3deg); }
.orbit-label:nth-of-type(4) { right: 4%; bottom: 10%; transform: rotate(-3deg); }

.loop {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading p {
  margin: 1.25rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.feature {
  min-height: 220px;
  padding: 2rem clamp(1.25rem, 3vw, 2rem);
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature:nth-child(3n) { border-right: 0; }

.feature b {
  display: block;
  color: var(--coral);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.feature h3 {
  margin: 2.3rem 0 0.75rem;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.veyren {
  margin: 0 0 clamp(5rem, 10vw, 9rem);
  padding: clamp(2rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  border-radius: 32px;
  background: var(--sage-deep);
  color: var(--white);
}

.veyren-mark {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font: 500 clamp(4rem, 9vw, 7rem) / 1 Georgia, serif;
  color: var(--yellow);
}

.veyren h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.veyren p {
  max-width: 660px;
  margin: 1.25rem 0 0;
  color: rgba(255, 253, 248, 0.72);
  line-height: 1.7;
}

.page-hero {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 { font-size: clamp(3.4rem, 8vw, 7rem); }

.effective {
  margin: 1.5rem 0 0;
  color: var(--sage);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal,
.support-content {
  width: min(100%, 880px);
  padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(5rem, 10vw, 8rem);
}

.legal section,
.support-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.legal h2,
.support-block h2 {
  margin: 0 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.legal p,
.support-block p,
.support-block li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.76;
}

.legal p,
.support-block p { margin: 0; }
.legal p + p,
.support-block p + p { margin-top: 1rem; }

.legal a,
.support-block a {
  color: var(--sage-deep);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.support-block ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.support-email {
  min-height: 52px;
  width: fit-content;
  margin-top: 1.25rem;
  padding: 0 1.2rem;
  display: inline-flex;
  align-items: center;
  border-radius: 15px;
  background: var(--sage);
  color: white !important;
  text-decoration: none;
}

.site-footer {
  width: min(calc(100% - 2rem), 1180px);
  margin: 0 auto;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .assistant-orbit { min-height: 470px; }
  .feature-flow { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(3n) { border-right: 1px solid var(--line); }
  .feature:nth-child(2n) { border-right: 0; }
  .veyren { grid-template-columns: 1fr; }
  .veyren-mark { width: min(220px, 70vw); }
}

@media (max-width: 560px) {
  .site-header { min-height: 68px; }
  .site-header nav { gap: 0.9rem; }
  .site-header nav a { font-size: 0.74rem; }
  .site-header nav a:first-child { display: none; }
  .hero { padding-top: 3.5rem; }
  .hero h1 { font-size: clamp(3.6rem, 20vw, 5.4rem); }
  .assistant-orbit { min-height: 420px; }
  .assistant-center { width: 76%; padding: 1.5rem; }
  .orbit-label { font-size: 0.68rem; }
  .feature-flow { grid-template-columns: 1fr; }
  .feature,
  .feature:nth-child(2n),
  .feature:nth-child(3n) { border-right: 0; }
  .feature { min-height: auto; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 0.7rem 1.25rem; }
}

@media (prefers-contrast: more) {
  :root { --muted: #344039; --line: rgba(28, 39, 34, 0.45); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
