:root {
  --paper:#f5f1e8;
  --ink:#18354a;
  --muted:#5c6a70;
  --brand:#18354a;
  --line:#d8d1c6;
  --white:#fffdf8;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:92px;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:"Avenir Next","Trebuchet MS",sans-serif;
  font-size:16px;
  line-height:1.6;
}
a {
  color:inherit;
  text-decoration:none;
}
button,input {
  font:inherit;
}
button,a,input,summary {
  -webkit-tap-highlight-color:transparent;
}
a:focus-visible,button:focus-visible,input:focus-visible,summary:focus-visible {
  outline:3px solid var(--brand);
  outline-offset:5px;
}
a:hover {
  text-decoration:none;
}
.wrap {
  width:min(1200px,calc(100% - 96px));
  margin:auto;
}
.skip {
  position:fixed;
  left:16px;
  top:-100px;
  background:var(--ink);
  color:white;
  padding:12px;
  z-index:100;
}
.skip:focus {
  top:12px;
}
.nav {
  position:sticky;
  top:0;
  z-index:10;
  background:#f5f1e8f5;
  border-bottom:1px solid var(--line);
}
.nav-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:88px;
  gap:24px;
}
.brand {
  display:flex;
  gap:11px;
  align-items:center;
  font-weight:600;
  font-size:21px;
  letter-spacing:-.8px;
}
.brand-icon {
  display:block;
  width:32px;
  height:32px;
  flex-shrink:0;
  color:var(--brand);
}
.nav-links {
  display:flex;
  align-items:center;
  gap:30px;
  font-size:13px;
}
.nav-links a:not(.button):hover,.text-link:hover {
  color:var(--brand);
  text-decoration:underline;
  text-underline-offset:5px;
}
.nav-actions {
  display:flex;
  gap:24px;
  align-items:center;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  background:var(--brand);
  color:white;
  padding:14px 22px;
  border:1px solid var(--brand);
  border-radius:4px;
  font-size:14px;
  font-weight:600;
  transition:background .18s,transform .18s;
  cursor:pointer;
}
.button:hover {
  background:#102738;
  transform:translateY(-2px);
}
.button.light {
  background:transparent;
  color:var(--ink);
  border-color:var(--line);
}
.button.light:hover {
  background:#ebe4d8;
}
.button.small {
  padding:10px 16px;
  font-size:12px;
}
.eyebrow {
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:10px;
  font-weight:600;
  color:var(--muted);
  display:flex;
  gap:12px;
  align-items:center;
}
.eyebrow:before {
  content:"";
  width:25px;
  height:1px;
  background:currentColor;
}
.hero {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  align-items:center;
  gap:70px;
  padding-top:84px;
  padding-bottom:80px;
}
h1,h2,h3,p {
  margin-top:0;
}
h1,h2 {
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
  letter-spacing:-2.8px;
  line-height:1.02;
}
h1 {
  font-size:clamp(60px,6.1vw,88px);
  margin:27px 0;
}
h1 em,h2 em {
  font-weight:400;
  color:#28786f;
}
.hero-copy {
  max-width:475px;
  font-size:16px;
  line-height:1.85;
  color:var(--muted);
}
.hero-actions {
  display:flex;
  gap:20px;
  align-items:center;
  margin:30px 0 17px;
  flex-wrap:wrap;
}
.text-link {
  font-size:13px;
}
.small-note {
  font-size:11px;
  color:var(--muted);
}
.stage {
  position:relative;
  padding:25px 0 25px 14px;
}
.voice-art {
  position:relative;
  background:var(--brand);
  border-radius:100px 100px 5px 5px;
  height:420px;
  color:#f5f1e8;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:43px 34px;
}
.art-kicker {
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  display:flex;
  justify-content:space-between;
}
.art-title {
  font-family:Georgia,serif;
  font-size:35px;
  line-height:1.2;
  font-weight:400;
  max-width:300px;
  letter-spacing:-.8px;
  position:relative;
  z-index:1;
}
.wave {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  width:100%;
  height:104px;
}
.wave i {
  display:block;
  flex:1;
  max-width:5px;
  background:#86ccc3;
  border-radius:5px;
  min-height:6px;
}
.art-bottom {
  display:flex;
  justify-content:space-between;
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  border-top:1px solid #ffffff30;
  padding-top:17px;
}
.page-note {
  position:absolute;
  bottom:3px;
  left:-22px;
  max-width:250px;
  background:var(--white);
  padding:21px 25px;
  box-shadow:0 12px 36px #18354a12;
  border:1px solid #ded7cc;
  transform:rotate(-4deg);
  border-radius:3px;
}
.page-note .note-label {
  font-size:9px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:12px;
}
.page-note p {
  font-family:Georgia,serif;
  font-size:16px;
  line-height:1.5;
  margin:0;
}
.page-note small {
  display:block;
  margin-top:14px;
  font-size:9px;
  color:var(--brand);
}
.art-caption {
  font-size:10px;
  color:var(--muted);
  text-align:right;
  letter-spacing:1px;
  margin-top:15px;
}
.capabilities {
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  padding:26px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  font-size:11px;
  color:var(--muted);
}
.capabilities span {
  display:flex;
  align-items:center;
  gap:13px;
}
.capabilities b {
  color:var(--brand);
  font-size:16px;
  font-weight:400;
}
.section {
  padding:94px 0;
}
.section-head {
  display:flex;
  justify-content:space-between;
  gap:40px;
  align-items:flex-end;
  margin-bottom:45px;
}
h2 {
  font-size:clamp(40px,4vw,57px);
  margin:18px 0 0;
}
.section-head>p {
  max-width:310px;
  font-size:14px;
  color:var(--muted);
  margin:0;
  line-height:1.8;
}
.features {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line);
}
.feature {
  padding:30px 30px 20px 0;
}
.feature+.feature {
  border-left:1px solid var(--line);
  padding-left:30px;
}
.number {
  font-size:11px;
  color:var(--brand);
  letter-spacing:1px;
}
.feature h3 {
  font-family:Georgia,serif;
  font-size:26px;
  font-weight:400;
  letter-spacing:-.6px;
  margin:25px 0 12px;
}
.feature p {
  font-size:13px;
  line-height:1.8;
  color:var(--muted);
  margin-bottom:22px;
}
.tag {
  display:inline-block;
  border:1px solid var(--line);
  padding:4px 8px;
  border-radius:3px;
  font-size:9px;
  margin:0 3px 5px 0;
  letter-spacing:.4px;
}
.studio {
  background:#e9e4da;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.studio-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.studio-copy p {
  color:var(--muted);
  font-size:14px;
  line-height:1.85;
  margin:25px 0;
}
.manuscript {
  background:var(--white);
  border:1px solid #d0c6b7;
  padding:30px;
  border-radius:5px;
  box-shadow:12px 12px 0 #dcd4c8;
}
.manuscript-top {
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:9px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  border-bottom:1px solid var(--line);
  padding-bottom:19px;
  color:var(--muted);
}
.chapter {
  display:grid;
  grid-template-columns:25px 1fr;
  gap:12px;
  padding:22px 0;
  border-bottom:1px solid #e5dfd6;
}
.chapter:last-child {
  border:0;
  padding-bottom:0;
}
.chapter-num {
  font-size:10px;
  color:var(--brand);
  padding-top:3px;
}
.chapter h3 {
  font-family:Georgia,serif;
  font-size:19px;
  font-weight:400;
  margin-bottom:8px;
}
.chapter p {
  font-size:11px;
  color:var(--muted);
  margin-bottom:0;
}
.chapter-line {
  height:3px;
  width:100%;
  background:#ece5dc;
  margin-top:12px;
}
.chapter-line.short {
  width:68%;
}
.chapter-current {
  color:var(--brand);
}
.section-mini {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  padding-top:80px;
}
.mini h3 {
  font-family:Georgia,serif;
  font-size:30px;
  font-weight:400;
  letter-spacing:-.8px;
  margin:14px 0;
}
.mini p {
  color:var(--muted);
  font-size:13px;
  line-height:1.85;
  max-width:450px;
}
.developer {
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.developer h2 {
  font-size:45px;
}
.developer p {
  font-size:14px;
  color:var(--muted);
  line-height:1.85;
  margin-top:22px;
}
.code-card {
  background:#102738;
  color:#f1e9df;
  border-radius:5px;
  padding:30px;
  min-width:0;
}
.code-label {
  font-size:9px;
  letter-spacing:1.8px;
  color:#b8ccce;
  border-bottom:1px solid #ffffff20;
  padding-bottom:18px;
  display:flex;
  justify-content:space-between;
}
.code-card pre {
  font-family:"SFMono-Regular",Consolas,monospace;
  font-size:12px;
  line-height:1.9;
  overflow-x:auto;
  margin:25px 0 0;
}
.code-card .accent {
  color:#86ccc3;
}
.free-section {
  padding:65px 0;
  background:var(--brand);
  color:var(--white);
}
.free-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:50px;
}
.free-inner h2 {
  font-size:47px;
  margin-top:12px;
}
.free-inner .eyebrow,.free-inner .small-note {
  color:#b5d8d5;
}
.free-inner p {
  font-size:13px;
  margin:20px 0 0;
  color:#d4e8e3;
}
.free-action {
  text-align:right;
  flex-shrink:0;
}
.free-action .button {
  background:var(--paper);
  color:var(--brand);
  border-color:var(--paper);
}
.free-action small {
  display:block;
  font-size:10px;
  margin-top:14px;
  color:#b5d8d5;
}
.faq-grid {
  display:grid;
  grid-template-columns:1fr 1.25fr;
  gap:70px;
}
details {
  border-bottom:1px solid var(--line);
  padding:19px 0;
}
details:first-child {
  border-top:1px solid var(--line);
}
summary {
  cursor:pointer;
  font-size:14px;
  list-style:none;
  display:flex;
  justify-content:space-between;
  gap:25px;
}
summary:after {
  content:"+";
  color:var(--brand);
  font-size:19px;
}
details[open] summary:after {
  content:"−";
}
details p {
  font-size:13px;
  color:var(--muted);
  line-height:1.85;
  margin:16px 25px 0 0;
}
details a {
  text-decoration:underline;
  text-underline-offset:3px;
}
.footer {
  border-top:1px solid var(--line);
  padding:40px 0 24px;
}
.footer-main {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:35px;
}
.footer p {
  font-size:11px;
  color:var(--muted);
  margin-top:10px;
}
.footer-links {
  display:flex;
  flex-wrap:wrap;
  gap:23px;
  font-size:11px;
}
.footer-bottom {
  margin-top:40px;
  border-top:1px solid var(--line);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  font-size:10px;
  color:var(--muted);
}
.notice {
  margin:25px auto;
  background:var(--white);
  padding:15px 20px;
  border:1px solid var(--line);
  font-size:13px;
}
.waitlist {
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:18px;
}
.waitlist label {
  font-size:11px;
  color:var(--muted);
}
.waitlist input {
  background:var(--white);
  border:1px solid var(--line);
  border-radius:3px;
  padding:9px 11px;
  max-width:230px;
  font-size:12px;
}
.waitlist button {
  border:0;
  background:none;
  font-size:12px;
  text-decoration:underline;
  cursor:pointer;
  color:var(--brand);
}
@media(min-width:1000px) {
  .voice-art {
    animation:arrive .8s ease-out both;
  }
  .page-note {
    animation:paper-in .9s ease-out both;
  }
}
@keyframes arrive {
  from {
    opacity:0;
    transform:translateY(15px);
  }
  to {
    opacity:1;
    transform:none;
  }
}
@keyframes paper-in {
  from {
    opacity:0;
    transform:translateY(20px) rotate(-4deg);
  }
  to {
    opacity:1;
    transform:translateY(0) rotate(-4deg);
  }
}
@media(max-width:950px) {
  .wrap {
    width:calc(100% - 48px);
  }
  .hero {
    gap:35px;
    padding-top:55px;
  }
  .hero h1 {
    font-size:64px;
  }
  .nav-links {
    gap:17px;
  }
  .nav-links .optional {
    display:none;
  }
  .voice-art {
    height:395px;
    padding:35px 25px;
  }
  .art-title {
    font-size:29px;
  }
  .page-note {
    left:-5px;
    max-width:220px;
  }
  .studio-inner,.developer {
    gap:40px;
  }
  .faq-grid {
    gap:40px;
  }
  .free-inner h2 {
    font-size:40px;
  }
}
@media(max-width:680px) {
  .wrap {
    width:calc(100% - 36px);
  }
  .nav-inner {
    min-height:72px;
    gap:12px;
  }
  .brand {
    font-size:18px;
  }
  .nav-links {
    gap:15px;
  }
  .nav-links .desktop {
    display:none;
  }
  .nav-actions {
    gap:15px;
  }
  .button.small {
    font-size:11px;
    padding:9px 12px;
  }
  .hero {
    grid-template-columns:1fr;
    gap:30px;
    padding:48px 0 40px;
  }
  .hero h1 {
    font-size:64px;
    max-width:380px;
  }
  .hero-copy {
    font-size:15px;
  }
  .hero-actions {
    gap:18px;
  }
  .stage {
    max-width:450px;
    width:100%;
    margin:auto;
    padding-left:14px;
    padding-bottom:35px;
  }
  .voice-art {
    height:370px;
    border-radius:90px 90px 5px 5px;
    padding:35px 30px;
  }
  .art-title {
    font-size:33px;
  }
  .page-note {
    bottom:5px;
    left:0;
    max-width:225px;
  }
  .art-caption {
    margin-top:25px;
  }
  .capabilities {
    display:grid;
    grid-template-columns:1fr 1fr;
    font-size:10px;
    gap:15px;
    padding:22px 0;
  }
  .section {
    padding:60px 0;
  }
  .section-head {
    display:block;
    margin-bottom:30px;
  }
  .section-head>p {
    margin-top:23px;
  }
  .features {
    grid-template-columns:1fr;
  }
  .feature,.feature+.feature {
    padding:25px 0;
    border-left:0;
    border-bottom:1px solid var(--line);
  }
  .feature h3 {
    margin-top:13px;
  }
  .feature p {
    margin-bottom:15px;
  }
  .studio-inner,.developer,.faq-grid {
    grid-template-columns:1fr;
    gap:35px;
  }
  .manuscript {
    padding:23px;
    box-shadow:7px 7px 0 #dcd4c8;
    margin-right:7px;
  }
  .section-mini {
    grid-template-columns:1fr;
    gap:30px;
    padding-top:45px;
  }
  .free-inner {
    display:block;
  }
  .free-inner h2 {
    font-size:42px;
  }
  .free-action {
    text-align:left;
    margin-top:30px;
  }
  .free-section {
    padding:45px 0;
  }
  .footer-main {
    display:block;
  }
  .footer-links {
    margin-top:25px;
    gap:17px;
  }
  .footer-bottom {
    gap:20px;
    flex-wrap:wrap;
  }
  .code-card {
    padding:23px;
  }
  .code-card pre {
    font-size:10px;
  }
  .faq-grid h2 {
    font-size:43px;
  }
  .hero .small-note {
    max-width:280px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  * {
    animation:none!important;
    transition:none!important;
  }
}
