@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700;12..96,800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --shadow: 0 28px 70px rgba(19, 37, 29, .13);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 34px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  color: var(--neutral-900);
  background: var(--neutral-50);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
p, h1, h2, h3 { margin: 0; }
h1, h2, h3, .brand { font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif; }
h1 {
  max-width: 700px;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}
h1 span { color: var(--primary); }
h2 {
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}
h3 {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}
p { color: var(--neutral-700); }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section-pd { padding: 112px 0; }

.skip-link {
  position: fixed;
  top: -70px;
  left: 20px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--neutral-0);
  background: var(--primary-deep);
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 20px; }
:focus-visible { outline: 3px solid var(--secondary); outline-offset: 4px; }

.site-header {
  position: relative;
  z-index: 10;
  padding: 22px 0;
}
.header-menu, .header-nav-area, .header-nav ul, .brand { display: flex; align-items: center; }
.header-menu { justify-content: space-between; min-height: 52px; }
.brand { flex: 0 0 auto; }
.brand img {
  width: 190px;
  height: auto;
}
.header-display { width: min(780px, 70%); }
.header-nav-area { justify-content: space-between; gap: 30px; }
.header-nav ul { justify-content: center; gap: 34px; }
.header-nav a {
  color: var(--neutral-700);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}
.header-nav a:hover { color: var(--neutral-900); }
.btn1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  color: var(--primary-dark);
  background: transparent;
  font: 700 15px/1 'Plus Jakarta Sans', sans-serif;
  transition: transform .18s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn1.active {
  color: var(--neutral-0);
  background: var(--primary);
  box-shadow: 0 12px 25px rgba(46, 110, 37, .22);
}
.btn1:hover { color: var(--neutral-0); background: var(--primary-dark); transform: translateY(-2px); }
.btn1:active { transform: translateY(0); }
.mobile-menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 0;
  border-radius: 50%;
  background: var(--primary-soft);
}
.mobile-menu span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--neutral-900);
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-menu.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu.open span:nth-child(2) { opacity: 0; }
.mobile-menu.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { padding: 42px 0 92px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; min-height: 660px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow {
  gap: 9px;
  margin-bottom: 25px;
  padding: 8px 13px;
  border: 1px solid var(--primary-soft-strong);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.62);
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 5px var(--primary-soft); }
.hero-lede { max-width: 570px; margin-top: 28px; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; }
.text-link { color: var(--neutral-900); font-size: 14px; font-weight: 700; }
.text-link span { display: inline-block; margin-left: 5px; color: var(--primary); transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.proof-list { display: flex; flex-wrap: wrap; gap: 11px 22px; margin-top: 40px; }
.proof-list li { display: flex; align-items: center; gap: 7px; color: var(--neutral-700); font-size: 12px; font-weight: 600; }
.proof-list li img { width: 17px; height: 17px; object-fit: contain; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 720px;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  top: 50%;
  left: 50%;
  z-index: -1;
  border-radius: 50%;
  background: var(--primary-soft);
  transform: translate(-50%, -50%);
}
.hero-visual::after {
  content: "";
  position: absolute;
  width: 124px;
  height: 124px;
  top: 66px;
  right: 34px;
  z-index: -1;
  border-radius: 50%;
  background: var(--secondary);
}
.hero-screenshot {
  position: relative;
  width: min(350px, 78%);
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  background: var(--neutral-0);
  box-shadow: 0 34px 80px rgba(19, 37, 29, .18);
  transform: rotate(1.25deg);
}
.hero-screenshot img { width: 100%; height: auto; }

.section-heading { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-kicker { margin-bottom: 14px; }
.section-heading p { max-width: 600px; margin: 22px auto 0; font-size: 17px; }
.work-area { background: var(--neutral-0); }
.work-card { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: item; }
.single-work-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  background: var(--neutral-50);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.single-work-card:hover { transform: translateY(-6px); border-color: var(--primary-soft-strong); box-shadow: 0 20px 45px rgba(19,37,29,.08); }
.single-work-card:nth-child(2) { background: var(--primary-deep); border-color: var(--primary-deep); transform: translateY(18px); }
.single-work-card:nth-child(2):hover { transform: translateY(12px); }
.single-work-card:nth-child(2) h3, .single-work-card:nth-child(2) .step-number { color: var(--neutral-0); }
.single-work-card:nth-child(2) p { color: var(--neutral-300); }
.step-number { color: var(--neutral-500); font: 700 12px/1 'Plus Jakarta Sans', sans-serif; letter-spacing: .1em; }
.work-card-img {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 52px 0 25px;
  border-radius: 23px;
  background: var(--primary-soft);
}
.work-card-img img { width: 31px; height: 31px; }
.single-work-card h3 { margin-bottom: 12px; }
.single-work-card p { max-width: 280px; font-size: 14px; }

.insight { overflow: hidden; }
.insight-panel {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 100px;
  min-height: 660px;
  padding: 70px 90px 0;
  border-radius: 48px;
  background: var(--primary-soft);
}
.insight-phone { align-self: end; width: 315px; height: 580px; overflow: hidden; border-radius: 32px 32px 0 0; box-shadow: var(--shadow); }
.insight-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.insight-copy { padding-bottom: 70px; }
.insight-copy > p { max-width: 510px; margin-top: 24px; font-size: 17px; }
.feature-list { display: grid; gap: 20px; margin-top: 36px; }
.feature-list li { display: flex; align-items: flex-start; gap: 15px; }
.feature-mark { display: grid; place-items: center; flex: 0 0 37px; height: 37px; border-radius: 50%; color: var(--primary-deep); background: var(--secondary); font-weight: 800; }
.feature-list strong, .feature-list small { display: block; }
.feature-list strong { margin-bottom: 3px; font-size: 14px; }
.feature-list small { color: var(--neutral-700); font-size: 12px; }

.download-area { color: var(--neutral-0); background: var(--primary-deep); }
.download-area .section-kicker { color: var(--secondary); }
.download-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 70px; }
.download-head h2 { color: var(--neutral-0); }
.store-buttons { display: flex; gap: 12px; }
.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  color: var(--neutral-0);
  background: rgba(255,255,255,.07);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.store-button,
.store-button:visited,
.store-button:hover,
.store-button:focus {
  color: var(--neutral-0);
  text-decoration: none;
}
.store-button:hover { color: var(--neutral-0); transform: translateY(-3px); background: rgba(255,255,255,.12); }
.store-button:active { transform: translateY(0) scale(.98); }
.store-button-coming-soon { border-style: dashed; }
.store-button-coming-soon small { color: var(--secondary); }
.store-button img { width: 36px; height: 36px; }
.store-button span { font-weight: 700; line-height: 1.2; }
.store-button small { display: block; margin-bottom: 3px; color: var(--neutral-300); font-size: 9px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: end; gap: 34px; }
.single-showcase { margin: 0; }
.single-showcase img {
  width: 100%;
  max-width: 235px;
  height: auto;
  margin-inline: auto;
  overflow: hidden;
  border-radius: clamp(10px, 10%, 24px) / clamp(10px, 4.7%, 24px);
  clip-path: inset(0 round clamp(10px, 10%, 24px) / clamp(10px, 4.7%, 24px));
  filter: drop-shadow(0 26px 35px rgba(0,0,0,.24));
}
.single-showcase.featured { transform: translateY(-20px); }
.single-showcase figcaption { margin-top: 23px; color: var(--neutral-300); font-size: 12px; font-weight: 600; text-align: center; text-transform: uppercase; letter-spacing: .09em; }

.availability-dialog {
  position: fixed;
  inset: 0;
  width: min(520px, calc(100% - 32px));
  max-width: none;
  height: max-content;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 32px;
  color: var(--neutral-900);
  background: transparent;
  box-shadow: 0 32px 90px rgba(8, 24, 16, .28);
}
.availability-dialog::backdrop {
  background: rgba(10, 25, 17, .64);
  backdrop-filter: blur(8px);
}
.dialog-card {
  position: relative;
  padding: 48px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 6%, rgba(200,241,105,.35), transparent 31%),
    var(--neutral-50);
}
.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--primary-deep);
  background: rgba(23, 61, 42, .1);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.dialog-close::before,
.dialog-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2.5px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
}
.dialog-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.dialog-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.dialog-close:hover { color: var(--neutral-0); background: var(--primary-deep); transform: rotate(4deg); }
.dialog-close:active { transform: rotate(4deg) scale(.94); }
.dialog-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  border-radius: 20px;
  background: var(--primary-deep);
}
.dialog-icon img { width: 30px; height: auto; }
.dialog-card h2 { max-width: 390px; font-size: clamp(35px, 5vw, 48px); }
.dialog-card p { max-width: 420px; margin-top: 20px; }
.dialog-actions { display: flex; align-items: center; gap: 26px; margin-top: 32px; }
.availability-dialog[open] .dialog-card { animation: dialog-in .24s ease-out; }
@keyframes dialog-in {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.contact { background: var(--neutral-0); }
.contact-shell { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; padding: 74px; border-radius: 42px; background: var(--neutral-50); }
.contact-copy h2 { margin-top: 2px; }
.contact-copy p { max-width: 380px; margin-top: 22px; }
.contact-detail { display: block; margin-top: 35px; color: var(--primary-dark); font-size: 12px; font-weight: 700; }
#fs-frm { align-self: center; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-message { grid-column: 1 / -1; }
.form-floating .form-control {
  min-height: 62px;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  color: var(--neutral-900);
  background: var(--neutral-0);
  font-size: 14px;
}
.form-floating textarea.form-control { height: 135px; resize: vertical; }
.form-floating .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(74,140,52,.12); }
.form-floating label { color: var(--neutral-500); font-size: 13px; }
#form_status { grid-column: 1 / -1; margin-bottom: 12px; font-size: 13px; font-weight: 700; }
#form_status:empty { display: none; }
#form_status.form-status-success { color: var(--primary-dark); }
#form_status.form-status-error { color: var(--semantic-danger); }
.form-grid .btn1 { grid-column: 2; justify-self: end; gap: 20px; margin-top: 8px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.footer { padding: 32px 0 38px; background: var(--neutral-0); }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 28px; border-top: 1px solid var(--neutral-200); }
.footer .brand img { width: 168px; height: auto; }
.footer nav ul { display: flex; gap: 28px; }
.footer nav a, .footer p { color: var(--neutral-500); font-size: 11px; font-weight: 600; }
.footer nav a:hover { color: var(--neutral-900); }
.footer-badges {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 25px;
  border-top: 1px solid var(--neutral-200);
}
.footer-badges-label {
  color: var(--neutral-500);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-badge-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-badge-list a {
  display: grid;
  place-items: center;
  width: 132px;
  height: 46px;
  padding: 8px 10px;
  border: 1px solid var(--neutral-200);
  border-radius: 13px;
  background: var(--neutral-50);
  box-shadow: 0 3px 10px rgba(19, 37, 29, .04);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.footer-badge-list img {
  width: auto;
  height: auto;
  max-width: 112px;
  max-height: 26px;
  object-fit: contain;
  opacity: .82;
  transition: opacity .18s ease;
}
.footer-badge-list a:hover {
  border-color: var(--primary-soft-strong);
  background: var(--neutral-0);
  box-shadow: 0 9px 18px rgba(19, 37, 29, .1);
  transform: translateY(-2px);
}
.footer-badge-list a:hover img { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 480px) {
  .footer-badge-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .footer-badge-list a { width: 100%; }
}
