:root {
  --yellow: #ffd000;
  --yellow-deep: #e8b900;
  --ink: #182328;
  --ink-2: #26343a;
  --muted: #66747b;
  --cream: #f7f5ef;
  --white: #fff;
  --line: #e4e4de;
  --green: #168552;
  --shadow: 0 24px 70px rgba(24, 35, 40, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
}
.skip-link:focus {
  top: 16px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 35, 40, 0.07);
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.045em;
}
.brand img {
  border-radius: 12px;
}
.brand b {
  color: #987800;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-header nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}
.site-header nav a:not(.nav-cta):hover {
  color: #a58400;
}
.nav-cta {
  padding: 11px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px;
}
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #fffdf3 0%, #fff 46%, #f4f3ed 100%);
  padding: 80px 0 50px;
}
.hero:before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--yellow);
  right: -130px;
  top: -150px;
  opacity: 0.9;
}
.hero-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd0003d, transparent 68%);
  left: -260px;
  bottom: -350px;
}
.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 55px;
}
.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.71rem;
  font-weight: 900;
  color: #6b5a00;
}
.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.hero h1 {
  margin: 23px 0 24px;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}
.hero h1 em {
  font-style: normal;
  color: #c49c00;
}
.hero-lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 34px 0 24px;
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px #1823282b;
}
.button-light {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.button-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 30px #ffd00035;
}
.button-disabled {
  background: #dfe2e1;
  color: #6b7478;
  cursor: not-allowed;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #56636a;
  font-size: 0.81rem;
  font-weight: 700;
}
.phone-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}
.phone {
  position: relative;
  z-index: 3;
  padding: 10px;
  border-radius: 43px;
  background: #10191d;
  box-shadow: 0 36px 80px rgba(21, 29, 32, 0.28);
}
.phone img {
  height: auto;
  border-radius: 34px;
}
.phone-main {
  width: 315px;
  transform: rotate(2.5deg);
}
.phone-secondary {
  width: 300px;
}
.speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 74px;
  height: 19px;
  border-radius: 20px;
  background: #10191d;
}
.orbit {
  position: absolute;
  border: 1px solid #d6d1bc;
  border-radius: 50%;
}
.orbit-one {
  width: 510px;
  height: 510px;
}
.orbit-two {
  width: 610px;
  height: 610px;
  opacity: 0.5;
}
.floating-card {
  position: absolute;
  z-index: 5;
  width: 210px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.floating-card b {
  font-size: 0.9rem;
}
.floating-card span {
  font-size: 0.75rem;
  color: var(--muted);
}
.card-search {
  left: 0;
  top: 155px;
}
.card-open {
  right: -10px;
  bottom: 140px;
}
.card-open i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  margin-bottom: 7px;
}
.proof {
  background: var(--ink);
  color: #fff;
}
.proof-grid {
  min-height: 130px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.proof-grid > div {
  padding: 10px 28px;
  border-right: 1px solid #ffffff20;
}
.proof-grid > div:last-child {
  border: 0;
}
.proof strong,
.proof span {
  display: block;
}
.proof strong {
  font-size: 1.18rem;
}
.proof span {
  font-size: 0.8rem;
  color: #bac3c5;
}
.section {
  padding: 110px 0;
}
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 65px;
}
.section-heading.left {
  text-align: left;
  margin: 0;
}
.section-heading h2,
.business h2,
.final-card h2 {
  margin: 12px 0 18px;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}
.section-heading p {
  font-size: 1.04rem;
  color: var(--muted);
}
.feature-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 80px;
}
.feature {
  display: flex;
  gap: 22px;
  padding: 27px 20px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition:
    background 0.2s,
    border 0.2s;
}
.feature:hover,
.feature.active {
  background: #fffaf0;
  border-color: var(--yellow);
  border-radius: 16px;
}
.feature > span {
  font-weight: 900;
  color: #c29b00;
}
.feature h3 {
  margin-bottom: 7px;
  font-size: 1.25rem;
}
.feature p {
  margin: 0;
  color: var(--muted);
}
.screen-showcase {
  position: relative;
  min-height: 630px;
  display: grid;
  place-items: center;
}
.screen-showcase:before {
  content: "";
  position: absolute;
  inset: 8% 0;
  border-radius: 46% 54% 50% 50%;
  background: var(--yellow);
}
.screen-halo {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid #d7d4c7;
}
.phone-secondary img {
  transition: opacity 0.18s;
}
.business {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.business-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.kicker-dark {
  color: var(--yellow);
}
.business-copy > p {
  color: #c4cdcf;
  font-size: 1.08rem;
  max-width: 560px;
}
.business-copy small {
  display: block;
  margin-top: 13px;
  color: #98a6aa;
}
.business-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.business-benefits article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid #ffffff19;
  border-radius: 19px;
  background: #ffffff09;
}
.business-benefits article > span {
  color: var(--yellow);
  font-size: 0.77rem;
  font-weight: 900;
}
.business-benefits h3 {
  margin: 22px 0 8px;
}
.business-benefits p {
  margin: 0;
  color: #afbbbe;
  font-size: 0.9rem;
}
.install {
  background: var(--cream);
}
.install-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 0.88fr;
  gap: 18px;
}
.install-card {
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 50px rgba(24, 35, 40, 0.06);
}
.install-card.ios {
  border-top: 5px solid var(--yellow);
}
.platform-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-size: 1.2rem;
}
.android-mark {
  background: #a7d46f;
  color: #182328;
}
.web-mark {
  background: var(--yellow);
  color: #182328;
}
.platform {
  margin: 22px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 900;
  color: var(--muted);
}
.install-card h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}
.install-card p,
.install-card li,
.install-card small {
  color: var(--muted);
}
.install-card ol {
  padding-left: 20px;
  margin-bottom: 25px;
}
.install-card li {
  padding: 5px 0;
}
.install-card .button {
  margin-top: auto;
}
.install-card small {
  display: block;
  margin-top: 12px;
  font-size: 0.73rem;
}
.testimonial {
  padding: 90px 0;
  background: var(--yellow);
}
.quote {
  text-align: center;
  max-width: 900px;
}
.quote > span {
  font-size: 5rem;
  line-height: 0.5;
}
.quote blockquote {
  margin: 25px 0;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.quote p {
  margin: 0;
  color: #5c4f0d;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}
.accordion details {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  font-weight: 850;
  cursor: pointer;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary span {
  font-size: 1.4rem;
}
.accordion details[open] summary span {
  transform: rotate(45deg);
}
.accordion details p {
  padding: 0 30px 22px 0;
  color: var(--muted);
}
.final-cta {
  padding: 0 0 100px;
}
.final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 64px;
  border-radius: 30px;
  background: var(--ink);
  color: #fff;
}
.final-card h2 {
  margin-bottom: 0;
}
.final-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.text-link {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
footer {
  padding: 70px 0 25px;
  background: #111a1e;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 55px;
}
.footer-brand b {
  color: var(--yellow);
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.footer-grid p,
.footer-grid a {
  color: #9caaae;
  font-size: 0.85rem;
  text-decoration: none;
}
.footer-grid a:hover {
  color: var(--yellow);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid #ffffff17;
  color: #829095;
  font-size: 0.75rem;
}
.install-modal[hidden] {
  display: none;
}
.install-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: #0c1418cc;
  backdrop-filter: blur(5px);
}
.modal-card {
  position: relative;
  z-index: 2;
  width: min(470px, 100%);
  padding: 36px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.modal-card img {
  border-radius: 16px;
}
.modal-card h2 {
  font-size: 1.8rem;
  margin: 18px 0 10px;
}
.modal-card ol {
  padding-left: 22px;
}
.modal-card li {
  margin: 10px 0;
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: none;
  font-size: 2rem;
  cursor: pointer;
}
.reveal {
  opacity: 1;
  transform: none;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.motion-ready .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  .site-header nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-header nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid,
  .feature-layout,
  .business-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .hero-actions,
  .trust-row {
    justify-content: center;
  }
  .phone-stage {
    min-height: 590px;
  }
  .card-search {
    left: 8%;
  }
  .card-open {
    right: 8%;
  }
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof-grid > div:nth-child(2) {
    border-right: 0;
  }
  .install-grid {
    grid-template-columns: 1fr 1fr;
  }
  .install-card.web {
    grid-column: 1/-1;
    min-height: 330px;
  }
  .feature-list {
    order: 2;
  }
  .screen-showcase {
    order: 1;
  }
  .section-heading.left {
    text-align: center;
    margin: auto;
  }
  .faq-grid {
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2;
  }
  .final-card {
    padding: 45px;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .nav-wrap {
    height: 68px;
  }
  .site-header nav {
    top: 68px;
  }
  .hero {
    padding-top: 54px;
  }
  .hero-grid {
    min-height: auto;
  }
  .hero h1 {
    font-size: 3.25rem;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }
  .trust-row {
    gap: 8px 14px;
  }
  .phone-stage {
    min-height: 545px;
  }
  .phone-main {
    width: 260px;
  }
  .orbit-one {
    width: 390px;
    height: 390px;
  }
  .orbit-two {
    width: 450px;
    height: 450px;
  }
  .floating-card {
    width: 170px;
    padding: 12px;
  }
  .card-search {
    left: -4px;
    top: 110px;
  }
  .card-open {
    right: -4px;
    bottom: 105px;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid > div {
    padding: 18px 8px;
    border-right: 0;
    border-bottom: 1px solid #ffffff20;
    text-align: center;
  }
  .section {
    padding: 78px 0;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .feature-layout {
    gap: 25px;
  }
  .screen-showcase {
    min-height: 550px;
  }
  .phone-secondary {
    width: 260px;
  }
  .business-benefits,
  .install-grid {
    grid-template-columns: 1fr;
  }
  .install-card.web {
    grid-column: auto;
  }
  .install-card {
    min-height: auto;
  }
  .business-grid {
    gap: 45px;
  }
  .faq-grid {
    gap: 20px;
  }
  .final-card {
    display: block;
    padding: 34px 26px;
  }
  .final-actions {
    margin-top: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
  .card-search {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .button {
    transition: none;
  }
}
