:root {
  --ink: #14201b;
  --muted: #5d6862;
  --paper: #f5f1e8;
  --paper-deep: #ebe4d7;
  --accent: #e85f3d;
  --green: #244d3d;
  --line: rgba(20, 32, 27, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}
a { color: inherit; }

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding: 28px 42px;
}
.brand {
  align-items: center;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 11px;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.brand-mark {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--paper);
  display: inline-flex;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  height: 34px;
  justify-content: center;
  width: 34px;
}
nav { display: flex; gap: 32px; }
nav a, .footer-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}
nav a:hover, .footer-links a:hover { color: var(--accent); }

main { overflow: hidden; }
.hero {
  margin: 0 auto;
  max-width: 1280px;
  min-height: 690px;
  padding: 116px 42px 90px;
  position: relative;
}
.eyebrow, .section-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 114px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.88;
  margin: 32px 0;
  max-width: 1000px;
}
.hero h1 em { color: var(--accent); font-weight: 400; }
.hero-copy {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.button {
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-block;
  font-size: 14px;
  font-weight: 650;
  padding: 12px 20px;
  text-decoration: none;
}
.button-primary { background: var(--ink); color: var(--paper); }
.button-primary:hover { background: var(--accent); border-color: var(--accent); }
.button-secondary:hover { border-color: var(--accent); color: var(--accent); }
.hero-card {
  background: var(--green);
  border-radius: 50% 50% 12px 12px;
  bottom: 68px;
  color: var(--paper);
  height: 310px;
  overflow: hidden;
  padding: 138px 42px 34px;
  position: absolute;
  right: 48px;
  transform: rotate(2deg);
  width: 305px;
}
.hero-card p {
  border-bottom: 1px solid rgba(255,255,255,.2);
  font-size: 13px;
  margin: 0;
  padding: 9px 0;
  position: relative;
  z-index: 2;
}
.hero-card p span { color: #eeb9a8; margin-right: 12px; }
.path {
  border: 2px solid rgba(245,241,232,.28);
  border-radius: 50%;
  height: 170px;
  left: 67px;
  position: absolute;
  top: -70px;
  width: 170px;
}
.path-two { left: 16px; top: -40px; }
.path-three { left: 118px; top: -36px; }

.statement {
  background: var(--green);
  color: var(--paper);
  padding: 110px max(42px, calc((100vw - 1196px) / 2));
}
.statement .section-label { color: #eeb9a8; }
blockquote {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 35px 0 0;
  max-width: 1020px;
}

.section-grid {
  display: grid;
  gap: 90px;
  grid-template-columns: .8fr 1.2fr;
  margin: 0 auto;
  max-width: 1280px;
  padding: 120px 42px;
}
.section-grid h2, .contact h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
  margin: 22px 0 0;
}
.work-content > p, .about-copy > p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 28px;
  max-width: 700px;
}
.principles { margin-top: 48px; }
.principles article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 45px 180px 1fr;
  padding: 26px 0;
}
.principles article > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}
.principles h3 { font-family: var(--serif); font-size: 20px; margin: 0; }
.principles p { color: var(--muted); font-size: 14px; margin: 0; }

.about { background: var(--paper-deep); max-width: none; padding-inline: max(42px, calc((100vw - 1196px) / 2)); }
.product-preview {
  background: #dfe8e1;
  padding: 120px max(42px, calc((100vw - 1196px) / 2));
}
.preview-intro {
  display: grid;
  gap: 30px;
  grid-template-columns: .75fr 1.1fr .85fr;
  margin-bottom: 70px;
}
.preview-intro h2 {
  font-family: var(--serif);
  font-size: clamp(43px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1.02;
  margin: 0;
}
.preview-intro > p:last-child {
  color: var(--muted);
  font-size: 16px;
  margin: 7px 0 0;
}
.feature-orbit {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}
.feature-card {
  background: rgba(245,241,232,.78);
  border: 1px solid rgba(20,32,27,.1);
  border-radius: 14px;
  min-height: 245px;
  padding: 30px;
}
.feature-card-main {
  background: var(--accent);
  color: #fff8f2;
  grid-column: span 2;
  min-height: 330px;
  overflow: hidden;
  position: relative;
}
.feature-kicker, .feature-number {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.feature-number { color: var(--accent); }
.feature-card h3 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: 20px 0 14px;
}
.feature-card-main h3 {
  font-size: clamp(34px, 4vw, 52px);
  max-width: 480px;
}
.feature-card p { color: var(--muted); font-size: 14px; margin: 0; }
.feature-card-main > p { color: rgba(255,255,255,.85); max-width: 490px; }
.activity-pulse {
  align-items: end;
  bottom: 27px;
  display: flex;
  gap: 7px;
  height: 58px;
  position: absolute;
  right: 30px;
}
.activity-pulse span {
  background: rgba(255,255,255,.78);
  border-radius: 5px 5px 1px 1px;
  display: block;
  height: 38%;
  width: 9px;
}
.activity-pulse span:nth-child(2) { height: 62%; }
.activity-pulse span:nth-child(3) { height: 45%; }
.activity-pulse span:nth-child(4) { height: 82%; }
.activity-pulse span:nth-child(5) { height: 67%; }
.activity-pulse span:nth-child(6) { height: 100%; }
.development-note {
  color: var(--muted);
  font-size: 12px;
  margin: 24px 0 0;
}
.beta {
  background: var(--green);
  color: var(--paper);
  max-width: none;
  padding-inline: max(42px, calc((100vw - 1196px) / 2));
}
.beta .section-label { color: #eeb9a8; }
.beta-content > p {
  color: #c8d0cc;
  font-size: 18px;
  margin: 0 0 40px;
  max-width: 680px;
}
.beta-form { max-width: 700px; }
.form-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.beta-form > label,
.form-row label,
.beta-form legend {
  display: block;
  font-size: 13px;
  font-weight: 650;
}
.beta-form input[type="text"],
.beta-form input[type="email"] {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.38);
  border-radius: 0;
  color: var(--paper);
  font: inherit;
  margin: 7px 0 24px;
  outline: none;
  padding: 10px 0;
  width: 100%;
}
.beta-form input::placeholder { color: #9eaaa4; }
.beta-form input:focus { border-color: #eeb9a8; }
.beta-form fieldset {
  border: 0;
  margin: 3px 0 27px;
  padding: 0;
}
.check-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 12px;
}
.check-grid label, .consent {
  align-items: center;
  color: #d5dbd8;
  display: flex;
  font-size: 13px;
  font-weight: 400;
  gap: 9px;
}
.beta-form input[type="checkbox"] { accent-color: #eeb9a8; height: 16px; width: 16px; }
.consent { align-items: flex-start; margin: 4px 0 28px; max-width: 600px; }
.beta-form .button {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--green);
  cursor: pointer;
}
.beta-form .button:hover { background: #eeb9a8; border-color: #eeb9a8; }
.form-note, .form-status {
  color: #aeb9b4;
  font-size: 12px;
  margin: 13px 0 0;
}
.form-status { color: #eeb9a8; min-height: 20px; }
.company-facts {
  border-top: 1px solid var(--line);
  margin: 48px 0 0;
}
.company-facts div {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  padding: 15px 0;
}
.company-facts dt { color: var(--muted); font-size: 13px; }
.company-facts dd { font-size: 14px; font-weight: 650; margin: 0; }

.contact {
  margin: 0 auto;
  max-width: 1280px;
  padding: 120px 42px;
}
.contact > p:not(.section-label) { color: var(--muted); font-size: 18px; margin-top: 30px; }
.contact-link {
  border-bottom: 2px solid var(--ink);
  display: inline-flex;
  font-family: var(--serif);
  font-size: clamp(25px, 4vw, 50px);
  gap: 30px;
  margin-top: 35px;
  padding-bottom: 5px;
  text-decoration: none;
}
.contact-link:hover { border-color: var(--accent); color: var(--accent); }

footer {
  align-items: end;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto;
  padding: 58px max(42px, calc((100vw - 1196px) / 2));
}
.footer-brand { margin-bottom: 12px; }
footer > div > p { color: #aab3ae; font-size: 13px; margin: 0; }
.footer-links { display: flex; gap: 24px; }
.copyright { color: #7f8a84; font-size: 12px; grid-column: 1 / -1; margin: 20px 0 0; }

.policy {
  margin: 0 auto;
  max-width: 900px;
  min-height: 70vh;
  padding: 100px 42px 140px;
}
.policy h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 90px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
  margin: 25px 0 10px;
}
.policy-date { color: var(--muted); margin-bottom: 70px; }
.policy-body { max-width: 700px; }
.policy-body > p { color: var(--muted); font-size: 16px; }
.policy-body h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin: 45px 0 12px;
}
.policy-body a { color: var(--accent); }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 80px; }
  .hero-card { margin: 70px auto 0; position: relative; bottom: auto; right: auto; }
  .section-grid { gap: 50px; grid-template-columns: 1fr; }
  .preview-intro { grid-template-columns: 1fr; }
  .feature-orbit { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
  .site-header { padding: 22px; }
  nav { gap: 16px; }
  nav a:first-child { display: none; }
  .hero { padding: 70px 22px 75px; }
  .hero h1 { font-size: 55px; }
  .statement, .section-grid, .product-preview, .contact, .policy { padding: 75px 22px; }
  .principles article { gap: 10px; grid-template-columns: 35px 1fr; }
  .principles article p { grid-column: 2; }
  .form-row, .check-grid { grid-template-columns: 1fr; }
  .feature-orbit { grid-template-columns: 1fr; }
  .feature-card-main { grid-column: auto; }
  footer { grid-template-columns: 1fr; padding: 50px 22px; }
  .copyright { grid-column: 1; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero h1, .hero-copy, .hero-actions {
    animation: rise .7s both;
  }
  .hero-copy { animation-delay: .08s; }
  .hero-actions { animation-delay: .16s; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
