@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/montserrat-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/montserrat-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url(/assets/fonts/opensans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url(/assets/fonts/opensans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: light;

  --ink: #1c1c22;
  --body: #46464b;
  --muted: #8a8a92;
  --accent: #ff9500;
  --accent-ink: #1c1c22;
  --page: #ffffff;
  --soft: #fafafb;
  --box: #eaeaee;
  --line: #e6e6ea;

  --shell: 1080px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 24px;
  --radius-pill: 100px;

  --sans: 'Open Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --display: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--page);
  color: var(--body);
  font: 400 17px/1.65 var(--sans);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
strong, b { font-weight: 600; color: var(--ink); }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .92em;
  background: var(--box);
  padding: .1em .35em;
  border-radius: 4px;
}
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .6em;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.6rem, 6vw, 3.9rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.25rem); font-weight: 500; }
h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: 0; }
h4 { font-size: 1rem; font-weight: 500; letter-spacing: 0; }

p { margin: 0 0 1.5rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration: none; }

ul, ol { margin: 0 0 1.5rem; padding-left: 1.3rem; }
li { margin-bottom: .5rem; }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--body); }
.muted { color: var(--muted); }
.small { font-size: .93rem; }
.eyebrow {
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter); }
.shell--narrow { max-width: 46rem; }

section { position: relative; padding: clamp(3.5rem, 8vw, 6rem) 0; }
section.soft { background: var(--soft); }
section.tight { padding-top: 0; padding-bottom: 0; }

.nav { padding: 1.5rem 0 .5rem; position: relative; z-index: 40; }
.nav__inner { display: flex; align-items: center; gap: 1rem; }

.nav__brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-weight: 600; font-size: 1.15rem;
  color: var(--ink); text-decoration: none; margin-right: auto;
}
.nav__brand img { height: 38px; width: auto; }
.nav__brand--icon img { height: 34px; border-radius: 8px; }

.nav__links { display: flex; align-items: center; gap: .35rem; }
.nav__links a {
  font-family: var(--display);
  font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  padding: .55rem .8rem; border-radius: var(--radius-pill);
}
.nav__links a:hover { background: var(--box); }
.nav__links a.is-cta { background: var(--accent); color: var(--accent-ink); }
.nav__links a.is-cta:hover { filter: brightness(.95); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: none; border: 0; cursor: pointer; color: var(--ink);
  border-radius: 10px;
}
.nav__toggle:hover { background: var(--box); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ''; display: block; position: relative;
  width: 20px; height: 2px; background: currentColor; border-radius: 2px;
  margin: 0 auto; transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after  { position: absolute; top: 6px; }
.nav__toggle[aria-expanded='true'] span { background: transparent; }
.nav__toggle[aria-expanded='true'] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded='true'] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 767px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute; top: calc(100% + .5rem); left: var(--gutter); right: var(--gutter);
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--page); border: 1px solid var(--line);
    border-radius: 16px; padding: .5rem;
    box-shadow: 0 18px 40px rgba(28, 28, 34, .1);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: .8rem 1rem; text-align: left; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--display); font-size: 1rem; font-weight: 500;
  padding: .85rem 1.9rem; border-radius: var(--radius-pill);
  background: var(--accent); color: var(--accent-ink);
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255, 149, 0, .3); }
.btn:active { transform: none; box-shadow: none; }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--page); box-shadow: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

.hero { padding-top: clamp(2rem, 5vw, 3.5rem); }
.hero__grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}
.hero__grid--compact { grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); }
.hero__art { position: relative; }
.hero__art img { width: 100%; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 520px; }
  .hero__art--phone { max-width: 250px; }
}

.stats {
  display: grid; gap: clamp(1rem, 2.5vw, 1.75rem);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; } }

.stat {
  background: linear-gradient(180deg, var(--box) 0%, #f2f2f5 62%, var(--page) 100%);
  border-radius: var(--radius);
  padding: 1.9rem 1.25rem 2.1rem;
  text-align: center;
}
.stat__figure {
  font-family: var(--display); font-weight: 600; color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 3.2rem); line-height: 1; letter-spacing: -0.02em;
}
.stat__label {
  font-family: var(--display); font-weight: 500; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  margin-top: .7rem;
}

.about { position: relative; }
.about::before {
  content: '';
  position: absolute; z-index: 0; pointer-events: none;
  left: -18%; top: -10%; width: min(760px, 90vw); aspect-ratio: 721 / 480;
  background: url(/assets/img/bg-blob.webp) no-repeat 0 0 / contain;
  opacity: .9;
}
.about > * { position: relative; z-index: 1; }

.about__grid {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}
@media (max-width: 860px) { .about__grid { grid-template-columns: 1fr; } }

.faces { display: flex; align-items: center; justify-content: center; }
.faces img { width: min(230px, 44%); }
.faces img + img { margin-left: -8%; }

.cards { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }

.card {
  background: var(--page); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.5rem;
}
section.soft .card { background: var(--page); }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .97rem; margin-bottom: 0; }

.feature {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  background: var(--page); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; } }

.hero__art--phone { max-width: 290px; margin: 0 auto; }
.hero__art--phone img, .shots img {
  width: 100%;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(28, 28, 34, .16);
}

.shots {
  display: flex; justify-content: center; align-items: flex-start;
  padding: 1.5rem 0 4rem;
}
.shots img {
  aspect-ratio: 640 / 1195; object-fit: cover; object-position: top;
  width: clamp(180px, 20vw, 252px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.shots img:first-child { transform: rotate(-4.5deg) translate(14px, 34px); }
.shots img:nth-child(2) {
  width: clamp(206px, 23vw, 288px);
  position: relative; z-index: 1; margin: 0 1.25rem;
  box-shadow: 0 32px 64px rgba(28, 28, 34, .24);
}
.shots img:last-child { transform: rotate(4.5deg) translate(-14px, 34px); }
.shots img:hover { transform: translateY(-10px); z-index: 2; }
@media (max-width: 700px) {
  .shots {
    justify-content: flex-start; gap: 1rem;
    overflow-x: auto;
    margin: 0 calc(-1 * var(--gutter));
    padding: .5rem var(--gutter) 2rem;
    scroll-snap-type: x mandatory;
  }
  .shots img {
    width: 230px; flex: none; scroll-snap-align: center;
    box-shadow: 0 8px 20px rgba(28, 28, 34, .14);
  }
  .shots img:nth-child(2) {
    width: 230px; margin: 0;
    box-shadow: 0 8px 20px rgba(28, 28, 34, .14);
  }
  .shots img:first-child, .shots img:last-child { transform: none; }
}

.feature__mark { max-width: 220px; width: 100%; margin: 0 auto; }
.feature__mark img {
  width: 100%; border-radius: 22.4%;
  box-shadow: 0 18px 40px rgba(28, 28, 34, .18);
}

.page-head { padding: clamp(2.5rem, 6vw, 4rem) 0 0; }
.prose { padding-top: 2rem; }
.prose h2 { margin-top: 2.75rem; font-size: 1.45rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2rem; }

dl.meta { margin: 0; }
dl.meta dt {
  font-family: var(--display); font-weight: 600; color: var(--ink);
  margin-top: 1.6rem; font-size: .95rem;
}
dl.meta dd { margin: .3rem 0 0; }

.note {
  border-left: 3px solid var(--accent);
  background: var(--soft);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.25rem;
  margin: 0 0 1.5rem;
}
.note p:last-child { margin-bottom: 0; }

.foot { background: var(--soft); border-top: 1px solid var(--line); padding: 3rem 0 2.5rem; }
.foot__grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  align-items: start;
}
@media (max-width: 860px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__grid { grid-template-columns: 1fr; } }

.foot h4 { color: var(--ink); margin-bottom: .75rem; }
.foot__col p, .foot__col a { font-size: .95rem; }
.foot__col a { display: block; color: var(--body); text-decoration: none; margin-bottom: .45rem; }
.foot__col a:hover { color: var(--accent); text-decoration: underline; }
.foot__mark img { height: 42px; width: auto; margin-bottom: 1rem; }
.foot__legal {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: .9rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
}
.foot__legal p { margin: 0; }

.skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--page);
  padding: .75rem 1.25rem; border-radius: 0 0 10px 0; z-index: 100;
  text-decoration: none;
}
.skip:focus { left: 0; top: 0; }
