:root{
  --background:#FAF9F5;
  --foreground:#1F1E1D;
  --card:#FFFFFF;
  --card-foreground:#1F1E1D;
  --popover:#FFFFFF;
  --popover-foreground:#1F1E1D;
  --primary:#D97757;
  --primary-foreground:#FFFFFF;
  --secondary:#F0EEE6;
  --secondary-foreground:#1F1E1D;
  --muted:#F0EEE6;
  --muted-foreground:#6E6A62;
  --accent:#D97757;
  --accent-foreground:#FFFFFF;
  --destructive:#C4643F;
  --border:#E8E6DF;
  --input:#E8E6DF;
  --ring:#D97757;
  --radius:14px;
  --font-sans:'Helvetica Neue',Arial,sans-serif;
  --font-heading:Georgia,'Times New Roman',serif
}
*{
  box-sizing:border-box
}
html{
  scroll-behavior:smooth;
  scroll-padding-top:100px
}
body{
  margin:0;
  background:var(--background);
  color:var(--foreground);
  font-family:var(--font-sans);
  font-size:16px;
  line-height:1.6
}
a{
  color:inherit;
  text-decoration:none
}
button,input{
  font:inherit
}
a,button,input{
  -webkit-tap-highlight-color:transparent
}
a:focus-visible,button:focus-visible,input:focus-visible,summary:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:5px
}
h1,h2,h3,p{
  margin:0
}
h1,h2,h3{
  font-family:var(--font-heading);
  font-weight:400
}
.container{
  width:min(1080px,calc(100% - 48px));
  margin-inline:auto
}
.header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgb(250 249 245 / 90%);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border)
}
.header-inner{
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between
}
.wordmark{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:Georgia,serif;
  font-style:italic;
  font-size:32px;
  letter-spacing:-1.6px;
  line-height:1
}
.sun{
  width:35px;
  height:35px;
  color:var(--accent);
  flex:none
}
nav{
  display:flex;
  gap:32px;
  align-items:center;
  font-size:14px
}
nav>a:not(.button):hover{
  color:var(--accent)
}
.button{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  min-height:54px;
  padding:14px 27px;
  background:var(--accent);
  color:#FFFFFF;
  border:0;
  border-radius:999px;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  transition:background .2s,transform .2s
}
.button:hover{
  background:#C4643F;
  transform:translateY(-2px)
}
.button span{
  font-size:16px;
  line-height:1
}
.button .os-note{
  font-size:14px;
  line-height:1;
  font-weight:500;
  opacity:.75;
  display:none
}
.button.disabled .os-note{
  display:inline
}
.button.disabled .btn-label{
  display:none
}
.button-small{
  min-height:40px;
  padding:9px 20px;
  font-size:14px;
  gap:15px
}
.hero{
  text-align:center;
  padding-top:65px
}
.hero-sun{
  width:66px;
  height:66px;
  margin:0 auto 25px;
  animation:turn 70s linear infinite
}
.eyebrow{
  font-size:11px;
  letter-spacing:2px;
  font-weight:500;
  color:var(--muted-foreground)
}
h1{
  font-size:clamp(2.5rem,7vw,4.5rem);
  line-height:1.1;
  letter-spacing:-3px;
  margin:22px 0
}
h1 em{
  font-weight:400
}
.hero-description{
  max-width:485px;
  margin:0 auto 27px;
  color:var(--muted-foreground);
  font-size:17px;
  line-height:1.8
}
.caption{
  font-size:12px;
  color:var(--muted-foreground);
  margin-top:14px
}
.hero-footnote{
  margin-top:65px;
  padding:21px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  color:var(--muted-foreground);
  font-size:12px;
  letter-spacing:.2px
}
.hero-footnote>span:nth-child(2){
  color:var(--accent);
  font-size:20px
}
@keyframes turn{
  to{
    transform:rotate(360deg)
  }
}
@media(max-width:650px){
  .container{
    width:calc(100% - 40px)
  }
  .header-inner{
    height:74px
  }
  .wordmark{
    font-size:29px
  }
  nav{
    gap:10px
  }
  nav>a:not(.button){
    display:none
  }
  .hero{
    padding-top:58px
  }
  .eyebrow{
    font-size:10px;
    letter-spacing:1.1px
  }
  h1{
    letter-spacing:-1.7px;
    margin:20px 0
  }
  .hero-description{
    font-size:16px
  }
  .hero-footnote{
    margin-top:52px;
    gap:15px
  }
  .hero-sun{
    width:58px;
    height:58px
  }
}
@media(prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto
  }
  *,*::before,*::after{
    animation:none;
    transition:none
  }
}
.button svg{
  width:17px;
  height:17px;
  flex:none
}
.hero-footnote .sun{
  width:18px;
  height:18px
}
.section{
  padding-block:88px
}
.section-heading{
  text-align:center;
  margin-bottom:38px
}
.section-heading .eyebrow{
  margin-bottom:14px
}
h2{
  font-size:clamp(1.75rem,3.8vw,2.5rem);
  line-height:1.22;
  letter-spacing:-1.2px
}
h2 em{
  color:var(--muted-foreground)
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px
}
.card{
  background:#FFFFFF;
  border:1px solid #E8E6DF;
  border-radius:14px;
  box-shadow:0 1px 3px rgba(0,0,0,.04)
}
.feature-card{
  padding:32px 30px 34px
}
.feature-icon{
  width:32px;
  height:32px;
  color:var(--accent);
  margin-bottom:27px
}
.feature-card h3{
  font-size:24px;
  letter-spacing:-.5px;
  margin-bottom:11px
}
.feature-card p,.steps p{
  font-size:15px;
  color:var(--muted-foreground);
  line-height:1.8
}
.alternate{
  background:#F0EEE6;
  border-block:1px solid var(--border)
}
.steps{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:54px;
  padding:0;
  margin:42px 0 0
}
.step-top{
  display:flex;
  align-items:center;
  gap:24px;
  margin-bottom:18px
}
.step-number{
  font-family:Georgia,serif;
  color:var(--accent);
  font-size:42px;
  font-weight:400;
  line-height:1
}
.step-line{
  height:1px;
  background:var(--border);
  flex:1
}
.steps h3{
  font-family:var(--font-sans);
  font-size:16px;
  font-weight:500;
  margin-bottom:7px
}
.quote-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px
}
.quote-card{
  margin:0;
  padding:24px 34px 30px;
  display:flex;
  flex-direction:column
}
.quote-mark{
  font-family:Georgia,serif;
  font-size:65px;
  line-height:.95;
  color:var(--accent);
  height:44px
}
.quote-card blockquote{
  font-family:Georgia,serif;
  font-size:21px;
  line-height:1.6;
  margin:0 0 24px;
  letter-spacing:-.2px
}
.quote-card figcaption{
  display:flex;
  gap:12px;
  align-items:center;
  margin-top:auto;
  font-size:14px
}
.avatar{
  display:flex;
  align-items:center;
  justify-content:center;
  width:39px;
  height:39px;
  background:var(--background);
  border:1px solid var(--border);
  border-radius:50%;
  font-size:12px;
  color:var(--muted-foreground);
  font-family:Georgia,serif
}
.quote-card strong{
  font-size:13px;
  font-weight:500
}
.role{
  display:block;
  color:var(--muted-foreground);
  font-size:12px
}
.sample-note{
  text-align:center;
  font-size:12px;
  color:var(--muted-foreground);
  margin-top:18px
}
.testimonials{
  padding-bottom:65px
}
.faq-section{
  border-top:1px solid var(--border);
  display:grid;
  grid-template-columns:.9fr 1.3fr;
  gap:80px
}
.faq-intro h2{
  margin:15px 0
}
.faq-intro>p:last-child{
  color:var(--muted-foreground);
  font-size:15px
}
.faq-list{
  border-top:1px solid var(--border)
}
.faq-item{
  border-bottom:1px solid var(--border)
}
.faq-trigger{
  padding:21px 0;
  font:500 15px/1.6 var(--font-sans);
  border:0;
  border-radius:0;
  align-items:center;
  gap:20px;
  transition:color .2s
}
.faq-trigger:hover{
  text-decoration:none;
  color:var(--accent)
}
.faq-trigger:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:4px
}
.faq-toggle{
  width:14px;
  height:14px;
  flex:none;
  position:relative;
  color:var(--muted-foreground)
}
.faq-toggle:before,.faq-toggle:after{
  content:'';
  position:absolute;
  background:currentColor;
  inset:6px 0;
  height:1px
}
.faq-toggle:after{
  transform:rotate(90deg);
  transition:transform .2s
}
.faq-item[open] .faq-toggle:after{
  transform:rotate(0)
}
.faq-answer{
  font-size:15px;
  line-height:1.8;
  padding-bottom:22px;
  color:var(--muted-foreground);
  height:auto
}
.signup{
  text-align:center;
  padding-block:76px 62px
}
.signup .sun{
  width:42px;
  height:42px;
  margin:0 auto 21px
}
.signup .eyebrow{
  margin-bottom:13px
}
.signup h2{
  font-size:clamp(2rem,4.5vw,3rem);
  margin-bottom:15px
}
.signup>.container>p:not(.eyebrow):not(.caption){
  color:var(--muted-foreground);
  font-size:16px
}
.signup-form{
  display:grid;
  grid-template-columns:1fr 1.2fr auto;
  align-items:end;
  gap:12px;
  max-width:830px;
  margin:30px auto 0
}
.field{
  text-align:left
}
.field label{
  display:block;
  font-size:12px;
  margin-bottom:7px;
  color:var(--muted-foreground)
}
.field input{
  background:#FFFFFF;
  border:1px solid #E8E6DF;
  border-radius:10px;
  height:54px;
  padding:14px 16px;
  font-size:16px;
  color:var(--foreground)
}
.field input::placeholder{
  color:var(--muted-foreground)
}
.field input:focus{
  outline:2px solid var(--accent);
  outline-offset:2px
}
.signup-form .button{
  white-space:nowrap;
  gap:16px
}
.form-status{
  max-width:630px;
  margin:auto;
  color:var(--foreground);
  font-size:14px
}
.form-status:not(:empty){
  margin-top:20px;
  padding:18px;
  background:var(--background);
  border:1px solid var(--border);
  border-radius:10px
}
.footer{
  background:#1F1E1D;
  color:#E8E6DF;
  padding:43px 0 23px
}
.footer-top{
  display:flex;
  align-items:center;
  gap:32px;
  padding-bottom:32px
}
.footer-top>.wordmark{
  font-size:30px;
  color:var(--background)
}
.footer-top>p{
  font-size:13px;
  color:var(--border)
}
.footer-top nav{
  margin-left:auto;
  font-size:13px;
  gap:26px
}
.footer-bottom{
  border-top:1px solid rgb(232 230 223 / 18%);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:12px
}
.footer a:hover{
  color:var(--accent)
}
.skip-link{
  position:fixed;
  left:20px;
  top:-100px;
  z-index:40;
  background:var(--background);
  padding:10px 20px;
  border:1px solid var(--border);
  border-radius:10px
}
.skip-link:focus{
  top:10px
}
[data-reveal]{
  transition:opacity .65s ease,transform .65s ease
}
.reveal-pending{
  opacity:0;
  transform:translateY(16px)
}
@media(max-width:900px){
  .feature-card{
    padding:26px 22px
  }
  .steps{
    gap:30px
  }
  .faq-section{
    gap:40px
  }
  .signup-form{
    grid-template-columns:1fr 1fr
  }
  .signup-form .button{
    grid-column:1/-1;
    justify-self:center;
    margin-top:6px
  }
  .footer-top{
    flex-wrap:wrap
  }
  .footer-top nav{
    gap:18px
  }
  .footer-top>p{
    display:none
  }
}
@media(max-width:650px){
  .section{
    padding-block:65px
  }
  .section-heading{
    margin-bottom:30px
  }
  h2{
    letter-spacing:-.7px
  }
  .feature-grid,.quote-grid,.steps{
    grid-template-columns:1fr;
    gap:16px
  }
  .feature-card{
    padding:28px
  }
  .feature-icon{
    margin-bottom:20px
  }
  .feature-card p,.steps p,.faq-intro>p:last-child{
    font-size:16px
  }
  .steps{
    gap:31px;
    margin-top:30px
  }
  .step-top{
    margin-bottom:12px
  }
  .step-number{
    font-size:38px
  }
  .steps h3{
    font-size:17px
  }
  .quote-card{
    padding:25px 28px 28px
  }
  .quote-card blockquote{
    font-size:21px
  }
  .faq-section{
    grid-template-columns:1fr;
    gap:27px
  }
  .desktop-break{
    display:none
  }
  .faq-trigger{
    font-size:16px
  }
  .faq-answer{
    font-size:16px
  }
  .signup-form{
    grid-template-columns:1fr;
    margin-top:25px;
    gap:15px
  }
  .signup-form .button{
    width:100%;
    margin-top:5px
  }
  .field label{
    font-size:14px
  }
  .signup>.container>p:not(.eyebrow){
    max-width:300px;
    margin-inline:auto
  }
  .signup .caption{
    font-size:12px
  }
  .footer{
    padding:33px 0 25px
  }
  .footer-top{
    justify-content:space-between;
    gap:25px;
    padding-bottom:25px
  }
  .footer-top nav{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin:0
  }
  .footer-top nav>a:not(.button){
    display:inline-block
  }
  .footer-bottom{
    flex-direction:column;
    gap:7px
  }
  .footer-bottom p{
    font-size:12px
  }
  .eyebrow{
    font-size:12px
  }
  .hero .eyebrow{
    max-width:285px;
    margin:auto;
    line-height:1.8
  }
  .hero-footnote{
    font-size:12px
  }
  .caption{
    font-size:12px
  }
}
@media(prefers-reduced-motion:reduce){
  .reveal-pending{
    opacity:1;
    transform:none
  }
}
/* Native element styles formerly supplied by the component library. */
svg {
  display: block;
  vertical-align: middle;
}
input {
  width: 100%;
  min-width: 0;
}
.faq-trigger {
  display: flex;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
}
.faq-trigger::-webkit-details-marker {
  display: none;
}
.faq-trigger::marker {
  content: '';
}
.button:disabled {
  cursor: default;
}
.button.disabled {
  background: #C9C5BC;
  pointer-events: none;
  cursor: not-allowed;
}
.button.disabled:hover {
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal-pending {
    opacity: 1;
    transform: none;
  }
}
