@font-face{
  font-family:Archivo Narrow;
  src:url('./assets/fonts/ArchivoNarrow.ttf') format('truetype');
  font-weight:100 900;
  font-display:swap
}
@font-face{
  font-family:Inter;
  src:url('./assets/fonts/Inter-Regular.ttf') format('truetype');
  font-weight:400;
  font-display:swap
}
@font-face{
  font-family:Inter;
  src:url('./assets/fonts/Inter-Medium.ttf') format('truetype');
  font-weight:500;
  font-display:swap
}
@font-face{
  font-family:Inter;
  src:url('./assets/fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight:600;
  font-display:swap
}
@font-face{
  font-family:JetBrains Mono;
  src:url('./assets/fonts/JetBrainsMono-Regular.ttf') format('truetype');
  font-weight:400;
  font-display:swap
}
/* Shared with clients/mobile/lib/design/tokens. Bright orange is voice-only. */
:root{
  --ground:#f7f9fb;
  --surface:#fff;
  --well:#f2f4f6;
  --ink:#191c1e;
  --muted:#5c6165;
  --quiet:#6b7176;
  --line:#e6e8ea;
  --strong-line:#cdd2d6;
  --accent:#a04100;
  --accent-pressed:#863600;
  --voice:#ff6b00;
  --green:#106b32;
  --green-bg:#e3f5ea;
  --amber:#8a5a12;
  --amber-bg:#fdf1da;
  --red:#ba1a1a;
  --red-bg:#fdecec;
  --heading:'Archivo Narrow',sans-serif;
  --mono:'JetBrains Mono',monospace;
  --shadow:0 1px 3px #191c1e0f,0 6px 16px -4px #191c1e0d
}
*{
  box-sizing:border-box
}
html{
  scroll-behavior:smooth;
  scroll-padding-top:108px
}
body{
  margin:0;
  background:var(--ground);
  color:var(--ink);
  font-family:Inter,sans-serif;
  font-size:15px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased
}
body:has(dialog[open]){
  overflow:hidden
}
button,a{
  -webkit-tap-highlight-color:transparent
}
button,input{
  font:inherit
}
button{
  cursor:pointer
}
a{
  color:inherit;
  text-decoration:none
}
button{
  color:inherit
}
img{
  max-width:100%;
  height:auto;
  display:block
}
h1,h2,h3,p{
  margin:0
}
h1,h2,h3{
  font-family:var(--heading);
  font-weight:700;
  line-height:1.06
}
button:disabled{
  cursor:default;
  opacity:.4
}
::selection{
  background:#e2bfb0;
  color:var(--ink)
}
:focus-visible{
  outline:3px solid var(--accent);
  outline-offset:5px
}
svg{
  flex-shrink:0
}
.icon{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round
}
.icon-definitions{
  width:0;
  height:0;
  position:absolute;
  overflow:hidden
}
.container{
  width:min(1200px,calc(100% - 96px));
  margin-inline:auto
}
.section-space{
  padding-block:112px
}
.skip-link{
  position:fixed;
  top:12px;
  left:12px;
  background:var(--ink);
  color:white;
  padding:12px 20px;
  z-index:100;
  transform:translateY(-150%)
}
.skip-link:focus{
  transform:translateY(0)
}
.site-header{
  position:sticky;
  top:0;
  background:#f7f9fbf2;
  backdrop-filter:blur(16px);
  z-index:20;
  border-bottom:1px solid var(--line)
}
.header-inner{
  min-height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:11px;
  font-family:var(--heading);
  font-weight:700;
  font-size:29px;
  letter-spacing:-.6px;
  white-space:nowrap;
  line-height:1
}
.brand-mark{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border:1.5px solid var(--ink);
  border-radius:8px;
  font-size:40px;
  padding-bottom:9px;
  letter-spacing:-4px;
  padding-right:4px
}
.brand-mark>span{
  color:var(--accent)
}
.brand-ops{
  font-family:Inter,sans-serif;
  display:inline-block;
  font-size:10px;
  font-weight:500;
  letter-spacing:.4px;
  border:1px solid var(--strong-line);
  border-radius:4px;
  padding:4px 5px;
  vertical-align:middle;
  margin-left:8px
}
.site-nav{
  display:flex;
  align-items:center;
  gap:34px;
  font-size:13px;
  font-weight:500
}
.site-nav>a{
  padding-block:15px
}
.site-nav>a:hover{
  color:var(--accent)
}
.button{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:23px;
  background:var(--accent);
  border:1px solid var(--accent);
  border-radius:7px;
  color:white;
  padding:13px 23px;
  font-family:var(--heading);
  font-weight:600;
  font-size:19px;
  line-height:1.25;
  letter-spacing:.1px;
  transition:background .18s,border-color .18s
}
.button:hover{
  background:var(--accent-pressed);
  border-color:var(--accent-pressed);
  /* Keep button geometry stable while hovering. */
}
.button-small{
  min-height:44px;
  padding:10px 18px;
  font-size:17px;
  gap:22px
}
.button-outline{
  background:transparent;
  color:var(--ink);
  border-color:var(--strong-line)
}
.button-outline:hover{
  color:var(--ink);
  background:var(--well);
  border-color:var(--strong-line)
}
.button:disabled:hover{
  transform:none
}
.text-button{
  display:inline-flex;
  align-items:center;
  gap:12px;
  border:0;
  background:none;
  padding:12px 0;
  min-height:48px;
  font-size:13px;
  font-weight:500
}
.text-button:hover{
  color:var(--accent)
}
.play-icon{
  width:31px;
  height:31px;
  border:1px solid var(--strong-line);
  border-radius:50%;
  display:grid;
  place-items:center
}
.play-icon .icon{
  width:16px;
  height:16px;
  position:relative;
  left:-1px
}
.menu-toggle{
  display:none
}
.hero{
  display:grid;
  grid-template-columns:1.08fr 1fr;
  min-height:754px;
  padding-top:67px;
  padding-bottom:54px;
  align-items:center;
  gap:32px
}
.hero-copy{
  padding-bottom:18px;
  position:relative;
  z-index:2
}
.eyebrow{
  font-size:12px;
  line-height:1.5;
  font-weight:500;
  letter-spacing:.35px;
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--muted)
}
.accent-line{
  width:23px;
  height:2px;
  background:var(--accent)
}
h1{
  font-size:clamp(66px,6.25vw,90px);
  letter-spacing:-2px;
  margin:23px 0 25px;
  line-height:1.015
}
h1>span{
  color:var(--accent)
}
.hero-description{
  font-size:15px;
  line-height:1.8;
  color:var(--muted);
  max-width:440px
}
.hero-actions{
  display:flex;
  gap:26px;
  align-items:center;
  margin-top:32px
}
.hero-note{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  color:var(--quiet);
  margin-top:35px
}
.hero-note .icon{
  width:17px;
  height:17px;
  color:var(--accent)
}
.hero-visual{
  position:relative;
  min-width:0;
  height:625px;
  display:flex;
  justify-content:center;
  align-items:center
}
.drafting-grid{
  position:absolute;
  inset:18px -12px 12px;
  background-image:linear-gradient(#cdd2d64d 1px,transparent 1px),linear-gradient(90deg,#cdd2d64d 1px,transparent 1px);
  background-size:36px 36px;
  mask-image:radial-gradient(ellipse,black 45%,transparent 76%)
}
.grid-cross{
  position:absolute;
  font-family:var(--mono);
  font-size:22px;
  font-weight:400;
  color:var(--quiet)
}
.cross-one{
  top:16%;
  left:10%
}
.cross-two{
  top:16%;
  right:10%
}
.cross-three{
  bottom:15%;
  left:10%
}
.cross-four{
  bottom:15%;
  right:10%
}
.phone{
  border:5px solid #303436;
  border-radius:34px;
  box-shadow:0 0 0 1px #191c1e,0 22px 35px -15px #191c1e35,3px 0 0 2px #92979b;
  overflow:hidden;
  background:var(--surface);
  position:relative
}
.phone img{
  width:100%;
  height:auto;
  aspect-ratio:390/844
}
.phone-top{
  height:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 14px;
  font-size:9px;
  font-weight:600;
  line-height:1;
  position:relative;
  color:var(--ink);
  background:white
}
.phone-speaker{
  width:54px;
  height:13px;
  position:absolute;
  left:50%;
  top:3px;
  transform:translateX(-50%);
  background:#25282a;
  border-radius:0 0 11px 11px
}
.phone-status{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:7px;
  letter-spacing:-1px
}
.battery{
  width:14px;
  height:7px;
  border:1px solid var(--ink);
  border-radius:2px;
  position:relative
}
.battery:after{
  content:'';
  position:absolute;
  inset:1px;
  background:var(--ink)
}
.phone-bottom{
  height:19px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:white
}
.phone-bottom:after{
  content:'';
  width:80px;
  height:3px;
  background:var(--ink);
  border-radius:4px
}
.hero-phone{
  width:259px;
  transform:rotate(-4deg);
  z-index:1
}
.visual-label{
  position:absolute;
  font-family:var(--mono);
  font-size:9px;
  color:var(--quiet);
  letter-spacing:.2px
}
.label-top{
  top:0;
  right:12px
}
.label-bottom{
  bottom:-22px;
  left:50%;
  transform:translateX(-50%);
  white-space:nowrap;
  display:flex;
  align-items:center;
  gap:8px
}
.status-dot{
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--accent)
}
.floating-note{
  position:absolute;
  z-index:3;
  background:white;
  border:1px solid var(--line);
  border-radius:10px;
  padding:14px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:0 10px 28px -10px #191c1e24
}
.floating-note p{
  font-size:11px;
  font-weight:500;
  margin-top:3px
}
.voice-note{
  left:-27px;
  top:190px;
  transform:rotate(-2deg)
}
.job-note{
  right:-3px;
  bottom:105px;
  transform:rotate(3deg)
}
.small-label{
  font-size:9px;
  color:var(--quiet)
}
.voice-symbol{
  width:37px;
  height:37px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--voice);
  color:white;
  flex-shrink:0
}
.voice-symbol .icon{
  width:23px;
  height:23px;
  stroke-width:2
}
.check-symbol{
  width:30px;
  height:30px;
  border:1px solid var(--line);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--accent)
}
.check-symbol .icon{
  width:17px;
  height:17px
}
.trades-strip{
  border-block:1px solid var(--line);
  background:white
}
.trades-inner{
  min-height:114px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px
}
.trades-inner p{
  font-size:11px;
  line-height:1.7;
  color:var(--quiet);
  padding-right:30px;
  border-right:1px solid var(--line)
}
.trades-inner strong{
  font-weight:500;
  color:var(--ink)
}
.trades-inner>span{
  font-family:var(--heading);
  font-size:22px;
  font-weight:600;
  color:var(--muted)
}
.section-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:64px;
  margin-bottom:42px
}
.section-heading>p{
  max-width:325px;
  font-size:14px;
  line-height:1.8;
  color:var(--muted);
  padding-bottom:4px
}
.section-number{
  font-family:var(--mono);
  font-size:11px;
  color:var(--accent)
}
h2{
  font-size:53px;
  letter-spacing:-.8px;
  margin-top:15px
}
.product-tabs{
  display:flex;
  border-bottom:1px solid var(--strong-line);
  gap:18px
}
.product-tabs button{
  flex:1;
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  border:0;
  border-bottom:2px solid transparent;
  background:transparent;
  font-size:14px;
  color:var(--muted);
  margin-bottom:-1px;
  transition:color .18s,border-color .18s
}
.product-tabs button[aria-selected=true]{
  border-color:var(--accent);
  color:var(--accent);
  font-weight:600
}
.product-tabs button:hover{
  color:var(--accent)
}
.product-tabs .icon{
  width:19px;
  height:19px
}
.feature-panel{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:645px;
  background:white;
  border:1px solid var(--line);
  border-top:0;
  border-radius:0 0 12px 12px;
  overflow:hidden
}
.feature-copy{
  padding:75px 30px 55px 60px;
  align-self:center
}
.feature-index{
  font-family:var(--mono);
  font-size:10px;
  color:var(--accent);
  letter-spacing:.3px
}
.feature-copy h3{
  font-size:46px;
  letter-spacing:-.5px;
  margin-top:21px
}
.feature-copy>p:not(.screenshot-note){
  font-size:14px;
  line-height:1.8;
  color:var(--muted);
  max-width:370px;
  margin-top:22px
}
.feature-list{
  list-style:none;
  padding:0;
  margin:27px 0 20px;
  font-size:12px;
  color:var(--muted)
}
.feature-list li{
  display:flex;
  align-items:flex-start;
  gap:11px;
  margin-block:14px
}
.feature-list li:before{
  content:'✓';
  color:var(--accent);
  font-size:13px
}
.feature-tour{
  color:var(--accent);
  gap:22px
}
.screenshot-note{
  color:var(--quiet);
  font-size:10px;
  line-height:1.65;
  margin-top:27px
}
.feature-visual{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:33px 24px 53px;
  background:var(--well);
  isolation:isolate
}
.feature-visual:before{
  content:'';
  position:absolute;
  inset:0;
  background-image:radial-gradient(#cdd2d6 1px,transparent 1px);
  background-size:18px 18px;
  mask-image:radial-gradient(ellipse,black,transparent 65%);
  z-index:-1
}
.feature-phone{
  width:238px
}
.feature-orbit{
  position:absolute;
  width:400px;
  height:400px;
  border:1px solid var(--strong-line);
  border-radius:50%;
  z-index:-1
}
.feature-orbit:before{
  content:'';
  position:absolute;
  inset:40px;
  border:1px solid var(--line);
  border-radius:50%
}
.feature-caption{
  position:absolute;
  bottom:16px;
  font-size:10px;
  color:var(--quiet)
}
.voice-section{
  background:var(--ink);
  color:white;
  padding-block:91px;
  position:relative;
  overflow:hidden
}
.voice-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:100px
}
.voice-copy .eyebrow{
  color:#a9afb4
}
.voice-copy .section-number{
  color:#cdd2d6
}
.voice-copy h2{
  font-size:72px;
  margin-top:24px
}
.voice-copy h2 span{
  color:#a9afb4
}
.voice-copy>p:not(.eyebrow){
  color:#a9afb4;
  font-size:14px;
  line-height:1.85;
  max-width:360px;
  margin-top:28px
}
.trust-note{
  display:flex;
  align-items:center;
  gap:14px;
  border-top:1px solid #464b4f;
  padding-top:28px;
  margin-top:31px;
  max-width:360px;
  font-size:11px;
  color:#a9afb4
}
.trust-note>.icon{
  border:1px solid #6b7176;
  width:30px;
  height:30px;
  border-radius:50%;
  padding:6px;
  color:white
}
.trust-note strong{
  font-weight:400;
  color:#e6e8ea
}
.voice-demo{
  border:1px solid #464b4f;
  border-radius:14px;
  padding:25px;
  background:#222628;
  box-shadow:0 16px 40px #00000012
}
.demo-heading{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:11px;
  color:#cdd2d6;
  padding-bottom:25px;
  border-bottom:1px solid #3a4044
}
.demo-heading>span:first-child{
  display:flex;
  align-items:center;
  gap:8px
}
.demo-heading .status-dot{
  background:#a9afb4
}
.demo-badge{
  border:1px solid #464b4f;
  padding:3px 7px;
  border-radius:4px;
  font-size:8px;
  white-space:nowrap
}
.demo-prompt{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding-block:25px
}
.demo-prompt>p{
  font-size:14px;
  line-height:1.6;
  padding-top:4px
}
.demo-avatar{
  width:29px;
  height:29px;
  border-radius:50%;
  background:#3a4044;
  display:grid;
  place-items:center;
  font-size:9px;
  flex-shrink:0
}
.demo-answer{
  background:white;
  color:var(--ink);
  border-radius:9px;
  padding:19px;
  min-height:240px
}
.assistant-mark{
  display:flex;
  align-items:center;
  gap:7px;
  font-family:var(--heading);
  font-weight:600;
  font-size:16px
}
.assistant-mark>.icon{
  color:var(--accent);
  width:17px;
  height:17px
}
.demo-answer>p{
  font-size:12px;
  line-height:1.7;
  margin-top:12px
}
.demo-result{
  background:var(--ground);
  border:1px solid var(--line);
  padding:12px 15px;
  border-radius:6px;
  margin-top:16px
}
.demo-result>div{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:10px;
  color:var(--muted)
}
.result-badge{
  font-size:9px;
  line-height:1.4;
  border-radius:20px;
  background:var(--red-bg);
  color:var(--red);
  padding:3px 8px
}
.result-badge[data-state=plan]{
  background:#d7e4fb;
  color:#17408a
}
.result-badge[data-state=invoice]{
  background:var(--amber-bg);
  color:var(--amber)
}
.demo-result>strong{
  display:block;
  font-family:var(--mono);
  font-weight:400;
  font-size:23px;
  line-height:1.4;
  margin-block:5px
}
.demo-result>p{
  font-size:10px;
  color:var(--muted)
}
.demo-bottom{
  display:flex;
  align-items:center;
  gap:11px;
  margin-top:21px;
  font-size:11px;
  color:#cdd2d6
}
.demo-bottom .voice-symbol{
  width:28px;
  height:28px
}
.demo-bottom .voice-symbol .icon{
  width:18px;
  height:18px
}
.prompt-options{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  margin-top:15px
}
.prompt-options>button{
  background:transparent;
  border:1px solid #5c6165;
  border-radius:5px;
  color:#cdd2d6;
  font-size:10px;
  padding:9px 10px;
  min-height:36px
}
.prompt-options>button:hover,.prompt-options>button[aria-pressed=true]{
  background:#f2f4f6;
  color:var(--ink);
  border-color:#f2f4f6
}
.demo-disclaimer{
  font-size:9px;
  color:#a9afb4;
  margin-top:14px
}
.workflow-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
  margin-top:56px
}
.workflow-grid article{
  border-top:1px solid var(--strong-line);
  padding-top:25px
}
.step-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:var(--quiet);
  font-family:var(--mono);
  font-size:11px
}
.step-top .icon{
  color:var(--accent);
  width:24px;
  height:24px
}
.workflow-grid h3{
  font-size:29px;
  margin-top:29px
}
.workflow-grid p{
  font-size:13px;
  color:var(--muted);
  line-height:1.85;
  margin-top:15px;
  max-width:300px
}
.step-tag{
  display:block;
  color:var(--quiet);
  font-family:var(--mono);
  font-size:9px;
  margin-top:27px
}
.faq-section{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:80px;
  padding-top:15px;
  padding-bottom:100px
}
.faq-section h2{
  font-size:49px
}
.faq-list{
  border-top:1px solid var(--strong-line)
}
.faq-list details{
  border-bottom:1px solid var(--line)
}
.faq-list summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-block:24px;
  font-weight:500;
  font-size:13px
}
.faq-list summary::-webkit-details-marker{
  display:none
}
.faq-list summary>.icon{
  width:18px;
  height:18px;
  color:var(--quiet);
  transition:transform .2s
}
.faq-list details[open] summary>.icon{
  transform:rotate(45deg)
}
.faq-list details>p{
  font-size:13px;
  line-height:1.9;
  color:var(--muted);
  padding-bottom:23px;
  padding-right:25px
}
.closing-section{
  position:relative;
  text-align:center;
  border:1px solid var(--line);
  background:white;
  padding:66px 20px 54px;
  border-radius:12px;
  overflow:hidden;
  isolation:isolate
}
.closing-grid{
  position:absolute;
  inset:0;
  background-image:linear-gradient(#e6e8ea 1px,transparent 1px),linear-gradient(90deg,#e6e8ea 1px,transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(90deg,black,transparent 35%,transparent 65%,black);
  opacity:.5;
  z-index:-1
}
.closing-section .eyebrow{
  justify-content:center;
  color:var(--accent)
}
.closing-section h2{
  font-size:61px;
  margin-top:18px
}
.closing-section h2>span{
  color:var(--muted)
}
.closing-section>p:not(.eyebrow){
  font-size:13px;
  color:var(--muted);
  margin-top:23px
}
.closing-section .button{
  margin-top:28px
}
.closing-footnote{
  display:block;
  color:var(--quiet);
  font-size:10px;
  margin-top:29px
}
.site-footer{
  min-height:168px;
  display:flex;
  align-items:center;
  gap:25px
}
.site-footer .brand{
  font-size:24px
}
.site-footer .brand-mark{
  width:32px;
  height:32px;
  font-size:35px
}
.site-footer>p{
  font-size:11px;
  color:var(--quiet);
  flex:1
}
.site-footer>a:not(.brand){
  font-size:11px
}
.site-footer>a:not(.brand)>span{
  margin-left:10px
}
.copyright{
  font-size:10px;
  color:var(--quiet);
  margin-left:22px
}
dialog{
  padding:0;
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--surface);
  color:var(--ink);
  max-width:min(880px,calc(100% - 40px));
  width:880px;
  max-height:calc(100dvh - 40px);
  overflow:auto;
  box-shadow:0 30px 100px #0004
}
dialog::backdrop{
  background:#191c1ebf;
  backdrop-filter:blur(7px)
}
.dialog-close{
  position:absolute;
  right:14px;
  top:13px;
  z-index:1;
  width:40px;
  height:40px;
  border:1px solid var(--line);
  background:white;
  font-size:27px;
  line-height:1;
  border-radius:50%;
  color:var(--muted)
}
.tour-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center
}
.tour-screen{
  background:var(--well);
  padding:25px;
  display:flex;
  align-items:center;
  justify-content:center
}
.tour-screen>img{
  width:auto;
  max-height:min(660px,calc(100dvh - 100px));
  max-width:100%;
  object-fit:contain;
  border:1px solid var(--line);
  border-radius:8px
}
.tour-copy{
  padding:55px 36px 35px
}
.tour-copy>.eyebrow{
  font-size:10px;
  margin-bottom:32px
}
.tour-copy h2{
  font-size:43px;
  margin-top:15px
}
.tour-copy>p:not(.eyebrow,.screenshot-note,.tour-keyboard-hint){
  font-size:13px;
  line-height:1.8;
  color:var(--muted);
  margin-top:20px
}
.tour-controls{
  display:flex;
  gap:10px;
  margin-top:35px
}
.tour-controls>.button{
  min-height:45px;
  font-size:16px;
  padding:10px 18px
}
.tour-keyboard-hint{
  font-size:9px;
  color:var(--quiet);
  margin-top:20px
}
@media(min-width:1450px){
  .hero{
    gap:70px;
    min-height:790px
  }
  .hero-visual{
    height:650px
  }
  .hero-phone{
    width:271px
  }
  .voice-note{
    left:-27px;
    top:208px
  }
  .job-note{
    right:-12px;
    bottom:108px
  }
}
@media(max-width:1100px){
  .container{
    width:calc(100% - 64px)
  }
  .hero{
    gap:20px;
    min-height:700px;
    padding-top:45px
  }
  .hero h1{
    font-size:72px
  }
  .hero-description{
    max-width:360px;
    font-size:14px
  }
  .hero-visual{
    height:580px
  }
  .hero-phone{
    width:235px
  }
  .voice-note{
    left:-12px;
    top:165px;
    padding:10px
  }
  .floating-note p{
    font-size:10px
  }
  .job-note{
    right:-4px;
    bottom:85px;
    padding:10px
  }
  .hero-actions{
    gap:20px
  }
  .hero-actions .button{
    font-size:17px;
    padding-inline:17px
  }
  .hero-actions .text-button{
    font-size:12px
  }
  .site-nav{
    gap:24px
  }
  .trades-inner>span{
    font-size:20px
  }
  .trades-inner p{
    padding-right:20px
  }
  .section-heading{
    gap:40px
  }
  h2{
    font-size:46px
  }
  .section-heading>p{
    max-width:295px;
    font-size:13px
  }
  .feature-copy{
    padding-left:38px
  }
  .feature-copy h3{
    font-size:40px
  }
  .feature-panel{
    min-height:620px
  }
  .voice-layout{
    gap:55px
  }
  .voice-demo{
    padding:20px
  }
  .voice-copy h2{
    font-size:66px
  }
  .demo-heading{
    gap:8px
  }
  .demo-badge{
    font-size:7px
  }
  .faq-section{
    gap:45px
  }
  .site-footer{
    gap:16px
  }
  .site-footer>p{
    font-size:10px
  }
  .copyright{
    margin-left:0;
    font-size:9px
  }
}
@media(max-width:800px){
  .container{
    width:calc(100% - 48px)
  }
  .header-inner{
    min-height:77px
  }
  .site-nav{
    gap:19px;
    font-size:11px
  }
  .site-nav .button{
    font-size:15px;
    gap:12px;
    padding:10px 12px
  }
  .brand{
    font-size:26px
  }
  .brand-mark{
    width:34px;
    height:34px;
    font-size:37px
  }
  .hero{
    grid-template-columns:1fr 1fr;
    min-height:620px;
    padding-top:38px;
    padding-bottom:35px;
    gap:10px
  }
  .hero h1{
    font-size:61px
  }
  .hero .eyebrow{
    font-size:10px;
    gap:8px
  }
  .hero-description{
    font-size:12px;
    line-height:1.9
  }
  .hero-actions{
    align-items:flex-start;
    flex-direction:column;
    gap:7px;
    margin-top:23px
  }
  .hero-actions .button{
    min-height:47px
  }
  .hero-note{
    font-size:9px;
    gap:7px;
    margin-top:19px
  }
  .hero-visual{
    height:530px
  }
  .hero-phone{
    width:212px
  }
  .voice-note{
    top:138px;
    left:-6px;
    gap:8px;
    padding:10px
  }
  .voice-note .voice-symbol{
    width:30px;
    height:30px
  }
  .voice-note p{
    font-size:9px
  }
  .job-note{
    bottom:78px;
    right:-8px;
    gap:7px
  }
  .job-note p{
    font-size:9px
  }
  .small-label{
    font-size:8px
  }
  .visual-label{
    font-size:8px
  }
  .label-top{
    right:0
  }
  .trades-inner{
    flex-wrap:wrap;
    justify-content:center;
    column-gap:26px;
    row-gap:14px;
    padding-block:23px
  }
  .trades-inner p{
    border:0;
    padding:0;
    width:100%;
    text-align:center
  }
  .trades-inner p br{
    display:none
  }
  .trades-inner>span{
    font-size:19px
  }
  .section-space{
    padding-block:78px
  }
  .section-heading{
    display:block;
    margin-bottom:30px
  }
  .section-heading>p{
    margin-top:23px;
    max-width:480px
  }
  .product-tabs{
    gap:0
  }
  .product-tabs button{
    font-size:12px;
    gap:7px;
    min-height:58px
  }
  .product-tabs .icon{
    width:17px;
    height:17px
  }
  .feature-copy{
    padding:40px 23px
  }
  .feature-copy h3{
    font-size:34px
  }
  .feature-copy>p:not(.screenshot-note){
    font-size:12px
  }
  .feature-list{
    font-size:11px
  }
  .feature-visual{
    padding:30px 22px 47px
  }
  .feature-phone{
    width:205px
  }
  .feature-panel{
    min-height:560px
  }
  .feature-orbit{
    width:310px;
    height:310px
  }
  .voice-section{
    padding-block:68px
  }
  .voice-layout{
    gap:35px
  }
  .voice-copy h2{
    font-size:58px
  }
  .voice-copy>p:not(.eyebrow){
    font-size:12px
  }
  .voice-copy .eyebrow{
    font-size:10px
  }
  .voice-demo{
    padding:16px
  }
  .demo-heading{
    flex-wrap:wrap;
    padding-bottom:16px
  }
  .demo-prompt{
    padding-block:20px
  }
  .demo-prompt>p{
    font-size:12px
  }
  .demo-answer{
    padding:14px;
    min-height:245px
  }
  .demo-answer>p{
    font-size:11px
  }
  .demo-result{
    padding:10px
  }
  .demo-result>strong{
    font-size:20px
  }
  .demo-result>p{
    font-size:9px
  }
  .prompt-options>button{
    font-size:9px
  }
  .demo-disclaimer{
    font-size:8px
  }
  .workflow-grid{
    gap:23px;
    margin-top:37px
  }
  .workflow-grid h3{
    font-size:27px
  }
  .workflow-grid p{
    font-size:12px
  }
  .step-tag{
    font-size:8px
  }
  .faq-section{
    grid-template-columns:1fr;
    gap:34px;
    padding-bottom:75px
  }
  .faq-section h2 br{
    display:none
  }
  .faq-section h2{
    font-size:44px
  }
  .closing-section h2{
    font-size:51px
  }
  .site-footer{
    flex-wrap:wrap;
    min-height:160px;
    padding-block:32px;
    gap:23px
  }
  .site-footer>p{
    min-width:calc(100% - 240px)
  }
  .site-footer>.copyright{
    margin-left:auto
  }
  .tour-copy{
    padding-inline:25px
  }
  .tour-copy h2{
    font-size:35px
  }
  .tour-keyboard-hint{
    display:none
  }
}
@media(max-width:600px){
  html{
    scroll-padding-top:88px
  }
  .container{
    width:calc(100% - 40px)
  }
  .header-inner{
    min-height:72px
  }
  .brand{
    font-size:26px
  }
  .brand-ops{
    font-size:9px
  }
  .menu-toggle{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;
    width:44px;
    height:44px;
    background:none;
    border:1px solid var(--strong-line);
    border-radius:6px
  }
  .menu-toggle span{
    width:18px;
    height:1.5px;
    background:var(--ink);
    transition:transform .18s
  }
  .menu-toggle[aria-expanded=true] span:first-child{
    transform:translateY(3.75px) rotate(45deg)
  }
  .menu-toggle[aria-expanded=true] span:last-child{
    transform:translateY(-3.75px) rotate(-45deg)
  }
  .site-nav{
    display:none;
    position:absolute;
    inset:72px 0 auto;
    background:var(--ground);
    padding:16px 20px 24px;
    border-bottom:1px solid var(--line);
    box-shadow:var(--shadow);
    font-size:14px
  }
  .site-nav.is-open{
    display:flex;
    align-items:stretch;
    flex-direction:column;
    gap:4px
  }
  .site-nav>a{
    padding:13px 5px
  }
  .site-nav>.button{
    margin-top:8px;
    font-size:18px;
    min-height:48px
  }
  .hero{
    grid-template-columns:1fr;
    gap:22px;
    padding-top:42px;
    padding-bottom:42px;
    min-height:0
  }
  .hero-copy{
    padding:0
  }
  .hero .eyebrow{
    font-size:11px
  }
  .hero h1{
    font-size:clamp(60px,12.5vw,76px);
    letter-spacing:-1.4px;
    margin-top:23px;
    margin-bottom:24px
  }
  .hero-description{
    font-size:13px;
    max-width:390px;
    line-height:1.85
  }
  .hero-actions{
    flex-direction:row;
    align-items:center;
    gap:22px;
    margin-top:27px
  }
  .hero-actions .button{
    font-size:17px;
    min-height:49px;
    padding-inline:17px;
    gap:17px
  }
  .hero-actions .text-button{
    font-size:11px;
    gap:8px
  }
  .play-icon{
    width:27px;
    height:27px
  }
  .hero-note{
    font-size:10px;
    margin-top:24px
  }
  .hero-visual{
    height:588px;
    max-width:440px;
    width:100%;
    margin:10px auto 0
  }
  .hero-phone{
    width:232px
  }
  .label-top{
    right:8px
  }
  .voice-note{
    top:184px;
    left:0;
    padding:12px;
    gap:10px
  }
  .voice-note p{
    font-size:10px
  }
  .voice-note .voice-symbol{
    width:33px;
    height:33px
  }
  .job-note{
    bottom:99px;
    right:0;
    padding:12px;
    gap:10px
  }
  .job-note p{
    font-size:10px
  }
  .small-label{
    font-size:9px
  }
  .label-bottom{
    bottom:2px
  }
  .visual-label{
    font-size:9px
  }
  .trades-inner{
    column-gap:22px;
    row-gap:13px;
    padding-block:26px
  }
  .trades-inner p{
    font-size:11px
  }
  .trades-inner>span{
    font-size:18px
  }
  .section-space{
    padding-block:65px
  }
  h2{
    font-size:40px;
    letter-spacing:-.4px
  }
  .eyebrow{
    font-size:10px;
    gap:10px
  }
  .section-number{
    font-size:10px
  }
  .section-heading>p{
    font-size:12px;
    line-height:1.9;
    margin-top:20px
  }
  .product-tabs{
    gap:0;
    justify-content:space-between
  }
  .product-tabs button{
    min-height:65px;
    flex-direction:column;
    gap:5px;
    font-size:10px;
    padding:8px 3px
  }
  .product-tabs .icon{
    width:18px;
    height:18px
  }
  .feature-panel{
    grid-template-columns:1fr
  }
  .feature-copy{
    padding:34px 27px 31px
  }
  .feature-copy h3{
    font-size:37px;
    margin-top:17px
  }
  .feature-copy>p:not(.screenshot-note){
    font-size:13px
  }
  .feature-list{
    font-size:11px;
    margin-top:21px;
    margin-bottom:13px
  }
  .feature-tour{
    font-size:12px
  }
  .screenshot-note{
    font-size:9px;
    margin-top:15px
  }
  .feature-visual{
    min-height:580px;
    padding-block:30px 46px
  }
  .feature-phone{
    width:230px
  }
  .feature-orbit{
    width:340px;
    height:340px
  }
  .feature-caption{
    font-size:10px;
    bottom:15px
  }
  .voice-section{
    padding-block:59px
  }
  .voice-layout{
    grid-template-columns:1fr;
    gap:37px
  }
  .voice-copy h2{
    font-size:60px
  }
  .voice-copy>p:not(.eyebrow){
    font-size:13px;
    margin-top:24px
  }
  .trust-note{
    font-size:11px;
    margin-top:25px;
    padding-top:22px
  }
  .voice-demo{
    padding:20px
  }
  .demo-heading{
    flex-wrap:nowrap;
    padding-bottom:22px
  }
  .demo-badge{
    font-size:8px
  }
  .demo-prompt>p{
    font-size:13px
  }
  .demo-answer{
    padding:17px;
    min-height:239px
  }
  .demo-answer>p{
    font-size:12px
  }
  .demo-result>p{
    font-size:10px
  }
  .demo-result>strong{
    font-size:23px
  }
  .prompt-options{
    gap:7px
  }
  .prompt-options>button{
    font-size:9px;
    padding:9px 8px;
    min-height:44px
  }
  .demo-disclaimer{
    font-size:8px
  }
  .workflow-grid{
    grid-template-columns:1fr;
    gap:31px
  }
  .workflow-grid article{
    padding-top:22px
  }
  .workflow-grid h3{
    font-size:30px;
    margin-top:20px
  }
  .workflow-grid p{
    font-size:13px;
    max-width:100%;
    margin-top:13px
  }
  .step-tag{
    font-size:9px;
    margin-top:20px
  }
  .faq-section{
    gap:29px;
    padding-top:0;
    padding-bottom:60px
  }
  .faq-section h2{
    font-size:40px
  }
  .faq-section h2 br{
    display:block
  }
  .faq-list summary{
    font-size:12px;
    line-height:1.7;
    padding-block:21px
  }
  .faq-list details>p{
    font-size:12px;
    padding-right:10px
  }
  .closing-section{
    padding:48px 18px 41px
  }
  .closing-section h2{
    font-size:39px;
    letter-spacing:-.5px;
    line-height:1.12
  }
  .closing-section>p:not(.eyebrow){
    font-size:12px;
    margin-top:20px
  }
  .closing-section .button{
    margin-top:24px;
    font-size:18px
  }
  .closing-footnote{
    font-size:9px
  }
  .site-footer{
    padding-block:34px;
    gap:24px 15px
  }
  .site-footer .brand{
    font-size:24px
  }
  .site-footer>p{
    font-size:9px;
    min-width:0;
    max-width:110px;
    margin-left:auto;
    flex:0 1 auto;
    line-height:1.8
  }
  .site-footer>a:not(.brand){
    font-size:10px
  }
  .copyright{
    font-size:9px
  }
  .tour-layout{
    grid-template-columns:1fr
  }
  .tour-screen{
    padding:20px 50px 15px
  }
  .tour-screen>img{
    max-height:43dvh
  }
  .tour-copy{
    padding:23px
  }
  .tour-copy>.eyebrow{
    margin-bottom:10px;
    font-size:9px
  }
  .tour-copy h2{
    font-size:30px;
    margin-top:9px
  }
  .tour-copy>p:not(.eyebrow,.screenshot-note,.tour-keyboard-hint){
    font-size:12px;
    margin-top:13px
  }
  .tour-copy>.screenshot-note{
    margin-top:12px
  }
  .tour-controls{
    margin-top:20px
  }
  .tour-controls .button{
    flex:1
  }
  .dialog-close{
    right:9px;
    top:9px;
    width:36px;
    height:36px
  }
}
@media(max-width:360px){
  .container{
    width:calc(100% - 32px)
  }
  .hero h1{
    font-size:56px
  }
  .hero-actions{
    gap:14px
  }
  .hero-actions .button{
    font-size:16px;
    padding-inline:13px;
    gap:12px
  }
  .hero-actions .text-button{
    font-size:10px
  }
  .hero-visual{
    height:555px
  }
  .hero-phone{
    width:216px
  }
  .voice-note{
    left:-2px;
    top:167px;
    padding:10px
  }
  .job-note{
    right:-2px;
    bottom:85px;
    padding:10px
  }
  .hero-note{
    font-size:9px
  }
  .voice-demo{
    padding:15px
  }
  .prompt-options{
    gap:5px
  }
  .prompt-options>button{
    font-size:8px
  }
  .closing-section h2{
    font-size:34px
  }
}
@media(prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto
  }
  *,*:before,*:after{
    transition:none!important;
    animation:none!important
  }
}
