/* A quiet, readable canvas for the real app. All assets are served locally. */
:root {
  --paper:#f7f5ed;
  --ink:#253e34;
  --muted:#526158;
  --line:#d9ddd1;
  --green:#325b44;
  --wash:#e8eddf;
  --white:#fffef9;
  --serif:Georgia,'Times New Roman',serif;
  --sans:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:24px;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
a {
  color:inherit;
  text-underline-offset:5px;
}
button,a,summary {
  -webkit-tap-highlight-color:transparent;
}
a:focus-visible,button:focus-visible,summary:focus-visible {
  outline:3px solid var(--green);
  outline-offset:6px;
}
img {
  display:block;
  max-width:100%;
  height:auto;
}
.wrap {
  width:min(1160px,calc(100% - 96px));
  margin-inline:auto;
}
p,h1,h2,h3,figure {
  margin:0;
}
p+p {
  margin-top:16px;
}
h1,h2,h3 {
  font-weight:400;
}
h1,h2 {
  font-family:var(--serif);
  letter-spacing:-.05em;
  line-height:1.06;
}
h1 {
  font-size:clamp(52px,5.9vw,82px);
  max-width:760px;
  text-wrap:balance;
}
h2 {
  font-size:clamp(38px,4vw,56px);
  text-wrap:balance;
}
h3 {
  font-size:22px;
  line-height:1.3;
  letter-spacing:-.025em;
}
p {
  color:var(--muted);
}
.eyebrow {
  font-size:11px;
  font-weight:650;
  text-transform:uppercase;
  letter-spacing:.18em;
  line-height:1.5;
  color:var(--green);
  margin-bottom:25px;
}
.site-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-block:29px;
  border-bottom:1px solid var(--line);
  gap:20px;
}
.brand {
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  font-weight:600;
  letter-spacing:-.035em;
  font-size:20px;
  white-space:nowrap;
}
.brand img {
  border-radius:10px;
}
.languages {
  display:flex;
  gap:4px;
  font-size:12px;
}
.languages a {
  padding:8px 11px;
  text-decoration:none;
  border:1px solid transparent;
  border-radius:30px;
}
.languages a[aria-current] {
  border-color:var(--ink);
}
.languages a:hover {
  background:var(--wash);
}
.hero {
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(270px,.75fr);
  gap:64px;
  align-items:center;
  padding-block:72px 54px;
}
.hero-copy {
  padding-bottom:24px;
}
.status-dot {
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--green);
  margin-right:9px;
  vertical-align:middle;
}
.hero-description {
  font-size:19px;
  max-width:480px;
  line-height:1.7;
  margin-top:28px;
}
.hero-actions {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:16px 25px;
  margin-top:30px;
}
.cta {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 24px;
  border-radius:6px;
  border:1px solid var(--green);
  background:var(--green);
  color:var(--white);
  font:600 13px/1.5 var(--sans);
  text-decoration:none;
  text-align:center;
}
.cta:disabled {
  cursor:default;
  opacity:1;
}
.cta[href]:hover {
  background:#254834;
}
.text-link {
  font-size:13px;
  font-weight:550;
  text-decoration:none;
  border-bottom:1px solid var(--line);
  padding-block:8px;
}
.text-link span {
  margin-left:8px;
}
.small-note {
  font-size:11px;
  line-height:1.65;
  margin-top:17px;
}
.hero-visual {
  padding:30px 30px 20px;
  background:var(--wash);
  border-radius:160px 160px 16px 16px;
  align-self:center;
  max-width:360px;
  justify-self:end;
  width:100%;
}
.phone {
  width:100%;
  max-width:282px;
  margin:auto;
  border:6px solid #26382f;
  border-radius:42px;
  background:#26382f;
  overflow:hidden;
  box-shadow:0 20px 40px -20px #243a3440;
}
.phone img {
  width:100%;
  border-radius:35px;
}
figcaption {
  font-size:10px;
  line-height:1.5;
  color:var(--muted);
  text-align:center;
  margin-top:22px;
}
.caption-index {
  font-size:9px;
  letter-spacing:.1em;
  margin-right:7px;
}
.principles {
  display:flex;
  justify-content:space-between;
  gap:24px;
  padding-block:26px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  font-size:12px;
}
.principles span::before {
  content:'✓';
  margin-right:10px;
  color:var(--green);
}
.story {
  padding-block:105px;
}
.section-intro {
  max-width:650px;
  margin-bottom:58px;
}
.section-intro>p:last-child {
  max-width:510px;
  margin-top:22px;
}
.story-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:90px;
  margin-top:36px;
}
.story-row:nth-of-type(odd) .story-image {
  order:2;
}
.story-row:nth-of-type(odd) .story-copy {
  order:1;
}
.story-image {
  background:var(--wash);
  padding:38px 32px;
  border-radius:12px;
}
.story-row:nth-of-type(3) .story-image {
  background:#ece9df;
}
.story-row:nth-of-type(4) .story-image {
  background:#e4e9e5;
}
.story-image .phone {
  max-width:252px;
  border-width:5px;
  border-radius:37px;
}
.story-image .phone img {
  border-radius:31px;
}
.story-copy {
  max-width:400px;
}
.step-number {
  display:block;
  font-size:11px;
  letter-spacing:.12em;
  color:var(--green);
  border-top:1px solid var(--line);
  padding-top:16px;
  margin-bottom:24px;
}
.story-copy h3 {
  font-family:var(--serif);
  font-size:38px;
  line-height:1.12;
  letter-spacing:-.04em;
  margin-bottom:22px;
}
.story-copy p {
  font-size:16px;
}
.story-copy .aside {
  font-size:12px;
  border-left:2px solid #aab8a0;
  padding-left:16px;
  margin-top:25px;
}
.connections {
  padding-block:85px;
  background:var(--wash);
}
.feature-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:42px 40px;
}
.feature {
  border-top:1px solid #bec9b9;
  padding-top:20px;
}
.feature-index {
  font-size:10px;
  letter-spacing:.1em;
  color:var(--muted);
  display:block;
  margin-bottom:20px;
}
.feature h3 {
  font-size:19px;
  margin-bottom:12px;
  font-weight:550;
}
.feature p {
  font-size:14px;
  line-height:1.75;
}
.privacy {
  padding-block:95px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
  border-bottom:1px solid var(--line);
}
.privacy h2 {
  max-width:440px;
}
.privacy-copy ul {
  padding-left:19px;
  margin:22px 0 0;
  font-size:14px;
  color:var(--muted);
}
.privacy-copy li {
  padding-left:5px;
  margin-top:10px;
}
.privacy-copy li::marker {
  color:var(--green);
}
.faq {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
  padding-block:80px;
}
.faq h2 {
  font-size:40px;
}
.faq details {
  border-bottom:1px solid var(--line);
}
.faq summary {
  cursor:pointer;
  padding:19px 25px 19px 0;
  font-size:15px;
  font-weight:550;
}
.faq details:first-child summary {
  padding-top:0;
}
.faq details p {
  font-size:14px;
  padding-bottom:23px;
}
.closing {
  background:var(--wash);
  border-radius:12px;
  padding:64px 48px;
  text-align:center;
}
.closing h2 {
  max-width:680px;
  margin:auto;
}
.closing>p:not(.eyebrow):not(.small-note) {
  max-width:530px;
  margin:24px auto;
}
.closing .eyebrow {
  margin-bottom:20px;
}
.closing .small-note {
  margin-top:18px;
}
.site-footer {
  display:flex;
  align-items:center;
  gap:25px;
  padding-block:45px;
}
.site-footer p {
  flex:1;
  font-size:11px;
  text-align:center;
}
.site-footer>a:last-child {
  font-size:12px;
}
.skip-link {
  position:absolute;
  top:-100px;
  left:20px;
  background:var(--white);
  padding:10px 20px;
  z-index:10;
}
.skip-link:focus {
  top:12px;
}
@media(min-width:1450px) {
  .hero {
    padding-block:85px;
  }
  .hero-visual {
    max-width:370px;
  }
}
@media(max-width:1000px) {
  .wrap {
    width:calc(100% - 56px);
  }
  .hero {
    gap:32px;
    grid-template-columns:1.25fr .85fr;
  }
  h1 {
    font-size:58px;
  }
  .hero-visual {
    padding:24px 20px 18px;
  }
  .story-row,.privacy,.faq {
    gap:45px;
  }
  .feature-grid {
    gap:32px;
  }
  .hero-description {
    font-size:17px;
  }
  .principles {
    font-size:11px;
  }
}
@media(max-width:700px) {
  .wrap {
    width:calc(100% - 40px);
  }
  .site-header {
    padding-block:20px;
  }
  .brand {
    font-size:17px;
    gap:8px;
  }
  .brand img {
    width:34px;
    height:34px;
  }
  .languages a {
    padding:7px 8px;
  }
  .hero {
    display:flex;
    flex-direction:column;
    gap:30px;
    padding-block:45px 35px;
  }
  .hero-copy {
    padding-bottom:0;
    width:100%;
  }
  .eyebrow {
    font-size:10px;
    margin-bottom:20px;
  }
  h1 {
    font-size:clamp(44px,11vw,66px);
    max-width:590px;
  }
  .hero-description {
    font-size:17px;
    margin-top:23px;
  }
  .hero-actions {
    gap:15px 20px;
    margin-top:25px;
  }
  .hero-visual {
    max-width:330px;
    align-self:center;
    justify-self:center;
    padding:26px 32px 19px;
  }
  .hero-visual .phone {
    max-width:245px;
  }
  .principles {
    display:grid;
    gap:12px;
    padding-block:23px;
  }
  .story {
    padding-block:65px;
  }
  .section-intro {
    margin-bottom:32px;
  }
  .section-intro>p:last-child {
    font-size:16px;
  }
  .story-row {
    display:flex;
    flex-direction:column;
    gap:24px;
    margin-top:50px;
  }
  .story-row .story-copy {
    order:1!important;
    max-width:none;
    width:100%;
  }
  .story-row .story-image {
    order:2!important;
    width:100%;
    padding:30px;
  }
  .story-copy h3 {
    font-size:34px;
  }
  .step-number {
    margin-bottom:16px;
  }
  .story-copy .aside {
    margin-top:17px;
  }
  .story-image .phone {
    max-width:245px;
  }
  .connections {
    padding-block:60px;
  }
  .feature-grid {
    grid-template-columns:1fr 1fr;
    gap:30px 24px;
  }
  .feature h3 {
    font-size:17px;
  }
  .feature p {
    font-size:13px;
  }
  .privacy,.faq {
    grid-template-columns:1fr;
    padding-block:60px;
    gap:28px;
  }
  .privacy h2 {
    max-width:440px;
  }
  .faq details:first-child summary {
    padding-top:18px;
  }
  .closing {
    padding:45px 25px;
  }
  .closing h2 {
    font-size:40px;
  }
  .closing>p:not(.eyebrow):not(.small-note) {
    font-size:15px;
  }
  .site-footer {
    flex-wrap:wrap;
    justify-content:space-between;
    gap:18px;
    padding-block:30px;
  }
  .site-footer p {
    order:3;
    flex-basis:100%;
    text-align:left;
  }
  .site-footer .brand {
    font-size:16px;
  }
}
@media(max-width:360px) {
  .brand {
    font-size:15px;
  }
  .languages a {
    padding-inline:6px;
  }
  .wrap {
    width:calc(100% - 32px);
  }
  .feature-grid {
    grid-template-columns:1fr;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
}
