@font-face {
  font-family: Poppins;
  src: url("/assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("/assets/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
:root {
  color-scheme: light;
  --night: #182c2d;
  --accent: #48c6c3;
  --paper: #fefefc;
  --ink: #171717;
  --muted: #546563;
  --line: #dce2dc;
  --radius: 30px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a:hover {
  text-decoration-thickness: 2px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #128a84;
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.045em;
}
p + p {
  margin-top: 1em;
}
.wrap {
  width: min(1160px, calc(100% - 80px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  background: var(--paper);
  padding: 12px 20px;
  transform: translateY(-160%);
}
.skip:focus {
  transform: none;
}
.site-header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.8px;
}
.brand img {
  border-radius: 12px;
  width: 40px;
  height: 40px;
}
.site-header nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 13px;
}
.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}
.site-header nav a:hover {
  text-decoration: underline;
}
.nav-pill {
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0 18px;
}
.hero-shell {
  margin: 0 20px;
  background: var(--night);
  color: var(--paper);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-shell:before,
.closing:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("/assets/valley.webp") center 64% / cover;
  opacity: 0.18;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 50px;
  min-height: 720px;
  padding-block: 70px;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow:before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(44px, 5.3vw, 72px);
  line-height: 1.14;
  margin: 28px 0;
  max-width: 650px;
}
.hero h1 span {
  color: var(--accent);
}
.hero-copy > p {
  max-width: 450px;
  color: #d2dcda;
  font-size: 16px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 25px;
  border-radius: 99px;
  text-decoration: none;
  background: var(--paper);
  color: var(--night);
  font-size: 13px;
  font-weight: 600;
  min-height: 54px;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}
.button:hover {
  background: #d7f1e9;
  transform: translateY(-2px);
  text-decoration: none;
}
.text-link {
  font-size: 13px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.availability {
  font-size: 11px !important;
  margin-top: 16px !important;
  color: #bccfca !important;
}
.phones {
  height: 570px;
  position: relative;
  min-width: 0;
}
.phone-back {
  position: absolute;
  width: 242px;
  top: 0;
  left: 0;
  transform: rotate(-7deg);
}
.phone-front {
  position: absolute;
  width: 258px;
  right: 0;
  top: 76px;
  transform: rotate(7deg);
}
.phone-note {
  position: absolute;
  left: 2px;
  bottom: 4px;
  font-size: 10px;
  color: #cedbd7;
  letter-spacing: 0.2px;
  max-width: 155px;
  line-height: 1.7;
}
.intro {
  padding: 85px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.intro h2,
.privacy-panel h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  max-width: 500px;
}
.intro > p {
  padding-top: 34px;
  color: var(--muted);
  font-size: 15px;
  max-width: 440px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 25px 0 80px;
}
.step {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.step-number {
  font-size: 12px;
  color: #53766e;
  display: block;
  margin-bottom: 22px;
}
.step h3 {
  font-size: 19px;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}
.privacy-panel {
  border-block: 1px solid var(--line);
  padding: 55px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.privacy-panel p {
  color: var(--muted);
  font-size: 14px;
}
.privacy-panel .text-link {
  margin-top: 14px;
  font-weight: 600;
  color: var(--night);
}
.closing {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 55px 60px;
  margin: 70px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.closing h2 {
  font-size: 32px;
  max-width: 540px;
}
.closing p {
  font-size: 13px;
  color: #d2dcda;
  margin-top: 12px;
}
.site-footer {
  padding-block: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--muted);
  font-size: 11px;
}
.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-brand {
  font-weight: 600;
  color: var(--night);
  font-size: 15px;
}
.footer-tag {
  margin-top: 4px;
}
.legal-head {
  background: var(--night);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 55px 60px;
  margin-bottom: 45px;
}
.legal-head h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-top: 14px;
}
.legal-head p {
  color: #d1ded9;
  font-size: 14px;
  max-width: 650px;
  margin-top: 20px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 70px;
  padding-bottom: 70px;
}
.contents {
  align-self: start;
  position: sticky;
  top: 25px;
  font-size: 12px;
}
.contents summary {
  font-weight: 600;
  margin-bottom: 15px;
  cursor: pointer;
  min-height: 44px;
}
.contents a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.6;
}
.contents a:hover {
  text-decoration: underline;
}
.legal-body {
  min-width: 0;
  max-width: 760px;
  font-size: 14px;
  line-height: 1.9;
}
.legal-body h2 {
  font-size: 25px;
  margin: 40px 0 18px;
  letter-spacing: -0.7px;
}
.legal-body h3 {
  font-size: 17px;
  margin: 25px 0 12px;
  letter-spacing: -0.3px;
}
.legal-body ul,
.legal-body ol {
  padding-left: 22px;
}
.legal-body li {
  padding-left: 5px;
  margin: 6px 0;
}
.legal-body a {
  overflow-wrap: anywhere;
  color: #176b64;
}
.legal-body code {
  font: inherit;
  overflow-wrap: anywhere;
  background: #f0eee1;
}
.table-scroll {
  overflow-x: auto;
  margin-block: 20px;
}
.legal-body table {
  border-collapse: collapse;
  min-width: 550px;
  font-size: 12px;
}
.legal-body th,
.legal-body td {
  text-align: left;
  vertical-align: top;
  padding: 12px;
  border: 1px solid var(--line);
}
.legal-body th {
  background: #edf1ed;
}
.draft-note {
  background: #f0eee1;
  padding: 20px 24px;
  border-radius: 16px;
  margin-bottom: 25px;
  font-size: 13px;
  line-height: 1.8;
}
.support-body {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 65px;
}
.support-body h2 {
  font-size: 24px;
  margin: 35px 0 15px;
}
.support-body p {
  font-size: 14px;
  color: var(--muted);
}
.not-found {
  padding-block: 100px;
  min-height: 60vh;
}
.not-found h1 {
  font-size: 50px;
  margin: 20px 0;
}
.not-found .button {
  background: var(--night);
  color: var(--paper);
  margin-top: 28px;
}
@media (min-width: 1450px) {
  .hero {
    min-height: 760px;
  }
  .phones {
    height: 590px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 60px);
  }
  .hero {
    gap: 25px;
    min-height: 650px;
  }
  .phones {
    height: 490px;
  }
  .phone-back {
    width: 200px;
  }
  .phone-front {
    width: 213px;
    top: 65px;
  }
  .phone-note {
    bottom: 0;
    font-size: 9px;
  }
  .intro,
  .privacy-panel {
    gap: 40px;
  }
  .steps {
    gap: 28px;
  }
  .legal-layout {
    gap: 35px;
    grid-template-columns: 190px minmax(0, 1fr);
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 82px;
  }
  .brand {
    font-size: 21px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .site-header nav {
    gap: 17px;
    font-size: 11px;
  }
  .site-header .nav-pill {
    display: none;
  }
  .hero-shell {
    margin-inline: 10px;
    border-radius: 25px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-block: 44px 28px;
    gap: 25px;
  }
  .hero h1 {
    font-size: clamp(43px, 8.9vw, 64px);
    margin-block: 22px;
    max-width: 560px;
  }
  .hero-copy > p {
    font-size: 14px;
    max-width: 480px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .hero-actions {
    margin-top: 27px;
    gap: 20px;
  }
  .phones {
    width: min(100%, 450px);
    height: 490px;
    margin: 5px auto 0;
  }
  .phone-back {
    width: 53%;
    left: 2%;
    top: 10px;
  }
  .phone-front {
    width: 55%;
    right: 2%;
    top: 52px;
  }
  .phone-note {
    left: 10px;
    bottom: 0;
    font-size: 9px;
    max-width: 140px;
  }
  .intro {
    padding-top: 55px;
    display: block;
  }
  .intro > p {
    padding-top: 22px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 0 50px;
  }
  .step {
    display: grid;
    grid-template-columns: 35px 1fr;
    column-gap: 15px;
  }
  .step-number {
    grid-row: 1/3;
    margin: 3px 0;
  }
  .step h3 {
    font-size: 19px;
    margin-bottom: 8px;
  }
  .step p {
    grid-column: 2;
  }
  .privacy-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 40px;
  }
  .closing {
    padding: 35px 28px;
    margin-top: 45px;
    display: block;
  }
  .closing h2 {
    font-size: 29px;
  }
  .closing .button {
    margin-top: 25px;
  }
  .site-footer {
    align-items: start;
    flex-direction: column;
    gap: 15px;
    padding-block: 30px;
  }
  .footer-links {
    gap: 22px;
  }
  .legal-head {
    padding: 35px 26px;
    margin-bottom: 25px;
  }
  .legal-layout {
    display: block;
  }
  .contents {
    position: static;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }
  .contents a {
    padding-block: 8px;
  }
  .legal-body {
    font-size: 14px;
  }
  .legal-body h2 {
    font-size: 23px;
  }
  .legal-body table {
    min-width: 490px;
  }
  .draft-note {
    padding: 18px;
  }
  .not-found h1 {
    font-size: 38px;
  }
}
@media (max-width: 760px) {
  .step {
    display: block;
  }
  .step-number {
    margin-bottom: 12px;
  }
  .step h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 390px) {
  .phones {
    height: 420px;
  }
  .phone-note {
    max-width: 125px;
  }
  .site-header nav {
    gap: 12px;
  }
  .hero-actions {
    gap: 10px;
  }
  .button {
    padding-inline: 19px;
  }
  .hero h1 {
    font-size: 41px;
  }
  .brand {
    font-size: 19px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  body {
    background: white;
    color: black;
  }
  .site-header,
  .site-footer,
  .contents,
  .skip {
    display: none;
  }
  .wrap {
    width: 100%;
  }
  .legal-head {
    background: none;
    color: black;
    padding: 0;
  }
  .legal-head p {
    color: black;
  }
  .legal-layout {
    display: block;
  }
  .legal-body {
    max-width: none;
  }
  .table-scroll {
    overflow: visible;
  }
  .legal-body table {
    min-width: 0;
  }
  a {
    color: inherit !important;
  }
  .legal-body h2 {
    break-after: avoid;
  }
}
