:root {
  color-scheme: light;
  --background: #fafaf8;
  --cream: #f5f1e8;
  --border: #e5dfd3;
  --text: #3c4043;
  --muted: #5c5549;
  --brand: #46788c;
  --brand-hover: #355e6f;
  --green: #2e8b57;
  --gold: #c88232;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 32px; }
body { margin: 0; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--brand); outline-offset: 6px; border-radius: 2px; }
img { display: block; max-width: 100%; height: auto; }
p, h1, h2, h3, figure { margin: 0; }
p { line-height: 1.7; }
.wrap { width: min(1184px, calc(100% - 96px)); margin-inline: auto; }
.section { padding-block: 104px; }
.eyebrow { font-size: 11px; line-height: 1.5; letter-spacing: 0.13em; font-weight: 650; text-transform: uppercase; color: var(--brand); }
h1, h2, h3 { font-weight: 550; }
h1 { font-size: clamp(48px, 5.2vw, 74px); letter-spacing: -0.055em; line-height: 1.08; }
h2 { font-size: clamp(30px, 3.3vw, 44px); letter-spacing: -0.045em; line-height: 1.18; }
h3 { font-size: 21px; letter-spacing: -0.025em; line-height: 1.3; }

.skip-link { position: absolute; top: -100px; left: 16px; padding: 12px 20px; background: var(--background); z-index: 3; }
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.site-header { min-height: 100px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); gap: 24px; }
.wordmark { display: inline-flex; align-items: baseline; font-size: 27px; letter-spacing: -1.3px; font-weight: 650; white-space: nowrap; }
.wordmark > span:first-child { color: var(--brand); font-weight: 400; margin-left: 5px; }
.brand-dot { width: 5px; height: 5px; background: var(--brand); border-radius: 50%; margin-left: 4px; transition: transform 400ms ease; }
.wordmark:hover .brand-dot { transform: scale(1.6); }
.site-header nav { display: flex; align-items: center; gap: 36px; font-size: 13px; }
.site-header nav a { padding-block: 12px; }
.nav-detail { color: var(--muted); }
.nav-contact { font-weight: 600; }
.nav-contact .arrow { margin-left: 12px; color: var(--brand); }
.site-header nav a:hover, .text-link:hover, .email-link:hover, figcaption a:hover, .address-toggle:hover, .site-footer > a:last-child:hover { color: var(--brand-hover); text-decoration: underline; text-underline-offset: 5px; }
.arrow, .arrow-down, .arrow-up { display: inline-block; transition: transform 220ms ease; }
a:hover > .arrow, button:hover > .arrow { transform: translate(3px, -3px); }
a:hover > .arrow-down { transform: translateY(3px); }
a:hover > .arrow-up { transform: translateY(-3px); }

.hero { display: grid; grid-template-columns: 1.15fr 1fr; align-items: center; gap: 24px; padding-block: 92px 76px; }
.hero .eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 27px; }
.status-dot { flex-shrink: 0; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.hero .eyebrow .status-dot { animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 #2e8b5745; } 50% { box-shadow: 0 0 0 6px #2e8b5700; } }
h1 > span { color: var(--brand); }
.hero-description { max-width: 430px; font-size: 17px; color: var(--muted); margin-top: 28px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 33px; }
.button { display: inline-flex; justify-content: space-between; align-items: center; gap: 30px; padding: 17px 23px; border: 0; border-radius: 5px; background: var(--brand); color: #fff; font: inherit; font-size: 14px; font-weight: 550; line-height: 1.4; cursor: pointer; transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.button:hover { background: var(--brand-hover); transform: translateY(-2px); box-shadow: 0 14px 26px -16px #46788c99; }
.button:active { transform: translateY(0); }
.button .arrow { font-size: 19px; line-height: 1; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-block: 12px; font-size: 13px; }
.hero-byline { font-size: 11px; margin-top: 26px; color: var(--muted); letter-spacing: 0.02em; }
.hero-byline strong { font-weight: 600; }
.hero-art { position: relative; padding-bottom: 16px; }
.hero-art img { position: relative; width: 100%; transform: translate3d(var(--shift-x, 0px), var(--shift-y, 0px), 0); transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1); animation: float 9s ease-in-out infinite; }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }
.art-glow { position: absolute; inset: 4% 6% 14%; border-radius: 50%; background: radial-gradient(circle at 46% 42%, #46788c26, #c8823214 55%, transparent 72%); filter: blur(18px); animation: breathe 9s ease-in-out infinite; }
@keyframes breathe { 0%, 100% { opacity: 0.75; transform: scale(0.97); } 50% { opacity: 1; transform: scale(1.04); } }
.art-caption { position: relative; display: flex; justify-content: center; gap: 12px; font-size: 11px; color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; }
.art-caption > span { color: var(--brand); }

.brand-block { display: flex; align-items: baseline; gap: 20px; min-width: 0; }
.claim-line { position: relative; padding-left: 21px; font-size: 12px; line-height: 1.5; color: var(--muted); letter-spacing: 0.01em; }
.claim-line::before { content: ""; position: absolute; top: 0.5em; left: 0; width: 13px; height: 2px; background: linear-gradient(90deg, var(--gold), #c8823233); }
.claim-line > span { color: var(--brand); font-weight: 600; }

.principles { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 25px; border-block: 1px solid var(--border); }
.principles p { display: flex; align-items: center; gap: 13px; font-size: 12px; color: var(--muted); }
.small-cross { font-size: 20px; font-weight: 300; color: var(--brand); transition: transform 300ms ease; }
.principles p:hover .small-cross { transform: rotate(90deg); }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.section-heading .eyebrow, .control-layout .eyebrow, .contact .eyebrow { margin-bottom: 20px; }
.section-heading > p { font-size: 14px; color: var(--muted); padding-bottom: 3px; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; padding: 0; margin: 56px 0 57px; }
.step-number { display: flex; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 16px; color: var(--brand); font-size: 12px; font-variant-numeric: tabular-nums; transition: border-color 250ms ease; }
.steps li:hover .step-number { border-color: var(--brand); }
.step-number > span { color: #8b8279; transition: transform 250ms ease, color 250ms ease; }
.steps li:hover .step-number > span { transform: translate(3px, -3px); color: var(--brand); }
.steps h3 { margin-block: 22px 12px; }
.steps p { font-size: 14px; color: var(--muted); max-width: 330px; }
.product-frame { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--cream); box-shadow: 0 16px 48px -32px #5c554950; transition: box-shadow 350ms ease, transform 350ms ease; }
.product-frame:hover { box-shadow: 0 26px 60px -30px #5c554970; transform: translateY(-3px); }
.product-bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 20px; font-size: 10px; color: var(--muted); letter-spacing: 0.03em; border-bottom: 1px solid var(--border); }
.bar-divider { padding-inline: 8px; color: var(--brand); }
.product-live { display: inline-flex; align-items: center; gap: 8px; }
.screenshot-link { display: block; }
.screenshot-link:focus-visible { outline-offset: -4px; }
.product-frame img { width: 100%; }
figcaption { display: flex; justify-content: space-between; gap: 20px; margin-top: 16px; font-size: 11px; color: var(--muted); line-height: 1.6; }
figcaption a { flex-shrink: 0; }
figcaption a > .arrow { margin-left: 8px; }

.control-section { padding-block: 85px; background: var(--cream); border-block: 1px solid var(--border); }
.control-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.control-intro { font-size: 15px; color: var(--muted); max-width: 320px; margin-top: 22px; }
.control-points { padding-top: 4px; }
.control-points article { display: flex; gap: 24px; }
.control-points article + article { border-top: 1px solid var(--border); margin-top: 24px; padding-top: 24px; }
.point-marker { flex-shrink: 0; font-size: 11px; color: var(--brand); padding-top: 5px; }
.control-points h3 { font-size: 20px; margin-bottom: 10px; }
.control-points p { font-size: 14px; color: var(--muted); }
.contact { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.contact h2 { font-size: clamp(36px, 4vw, 54px); }
.contact p:not(.eyebrow) { margin-top: 24px; color: var(--muted); font-size: 15px; }
.contact-action { display: flex; flex-direction: column; align-items: center; gap: 17px; padding-right: 54px; }
.address-toggle { border: 0; background: none; padding: 6px; font: inherit; font-size: 13px; color: var(--muted); cursor: pointer; }
.email-link { color: var(--muted); font-size: 13px; padding-block: 6px; }
.address-fallback { font-size: 13px; color: var(--muted); }
.site-footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; border-top: 1px solid var(--border); padding-block: 30px; }
.site-footer .wordmark { font-size: 20px; letter-spacing: -0.8px; }
.site-footer p, .site-footer > a:last-child { font-size: 11px; color: var(--muted); }
.site-footer > a:last-child .arrow-up { margin-left: 10px; }

.has-reveal .reveal { opacity: 0; transform: translateY(12px); }
.has-reveal .reveal.is-visible { opacity: 1; transform: none; transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.has-reveal .steps li:nth-child(2).is-visible, .has-reveal .control-points article:nth-child(2).is-visible { transition-delay: 110ms; }
.has-reveal .steps li:nth-child(3).is-visible, .has-reveal .control-points article:nth-child(3).is-visible { transition-delay: 220ms; }
.has-reveal .control-points article:nth-child(4).is-visible { transition-delay: 330ms; }

@media (min-width: 1500px) {
  .hero { padding-block: 104px 92px; }
}

@media (max-width: 1000px) {
  .wrap { width: calc(100% - 64px); }
  .hero { gap: 0; padding-block: 70px; }
  h1 { font-size: clamp(43px, 5.4vw, 58px); }
  .hero-description { font-size: 16px; }
  .hero-actions { gap: 12px 20px; }
  .brand-block { gap: 14px; }
  .section-heading { align-items: start; flex-direction: column; gap: 22px; }
  .steps { gap: 28px; }
  .control-layout { gap: 48px; }
  .contact-action { padding-right: 0; }
  .section { padding-block: 80px; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 24px; }
  .wrap { width: calc(100% - 40px); }
  .site-header { min-height: 78px; gap: 12px; padding-block: 16px; }
  .wordmark { font-size: 25px; }
  .site-header nav { font-size: 12px; }
  .nav-contact { white-space: nowrap; }
  .nav-detail { display: none; }
  .nav-contact .arrow { margin-left: 5px; }
  .hero { grid-template-columns: 1fr; padding-block: 48px 32px; }
  .hero .eyebrow { font-size: 9px; letter-spacing: 0.1em; margin-bottom: 24px; }
  h1 { font-size: clamp(30px, 9.5vw, 64px); }
  .hero-description { max-width: 470px; margin-top: 23px; }
  .hero-actions { margin-top: 27px; gap: 14px 24px; }
  .button { font-size: 13px; padding: 16px 19px; gap: 22px; }
  .hero-byline { margin-top: 19px; }
  .hero-art { width: min(330px, 85%); justify-self: center; margin-top: 22px; padding-bottom: 0; }
  .art-caption { font-size: 9px; }
  .brand-block { flex-direction: column; gap: 5px; }
  .claim-line { font-size: 10px; padding-left: 0; }
  .claim-line::before { display: none; }
  .claim-line br { display: none; }
  .principles { flex-wrap: wrap; justify-content: start; gap: 5px 24px; padding-block: 18px; }
  .principles p { font-size: 11px; gap: 8px; }
  .section { padding-block: 60px; }
  h2 { font-size: 32px; }
  .section-heading { gap: 18px; }
  .section-heading > p { font-size: 13px; }
  .section-heading .eyebrow, .control-layout .eyebrow, .contact .eyebrow { font-size: 10px; margin-bottom: 16px; }
  .steps { grid-template-columns: 1fr; gap: 28px; margin-block: 36px; }
  .step-number { padding-top: 12px; }
  .steps h3 { margin-block: 14px 8px; }
  .steps p { max-width: none; }
  .product-bar { padding: 12px; font-size: 9px; }
  .product-live { display: none; }
  figcaption { flex-direction: column; gap: 7px; font-size: 10px; }
  figcaption a { align-self: start; padding-block: 5px; }
  .control-section { padding-block: 55px; }
  .control-layout { grid-template-columns: 1fr; gap: 34px; }
  .control-intro { font-size: 14px; }
  .control-points article { gap: 19px; }
  .control-points h3 { font-size: 19px; }
  .contact { flex-direction: column; align-items: start; gap: 30px; }
  .contact h2 { font-size: 39px; }
  .contact p:not(.eyebrow) { font-size: 14px; }
  .contact p br { display: none; }
  .contact-action { align-items: start; gap: 11px; }
  .site-footer { flex-wrap: wrap; gap: 18px; padding-block: 25px; }
  .site-footer p { order: 3; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .brand-dot, .arrow, .arrow-down, .arrow-up, .small-cross, .step-number, .step-number > span, .product-frame, .hero-art img { transition: none; }
  .hero-art img, .art-glow, .hero .eyebrow .status-dot { animation: none; }
  .button:hover, .product-frame:hover { transform: none; }
  .has-reveal .reveal, .has-reveal .reveal.is-visible { opacity: 1; transform: none; transition: none; }
}
