:root {
  --ink: #111414;
  --muted: #69706d;
  --paper: #f4f5f1;
  --white: #fff;
  --aqua: #68e0d6;
  --deep: #0c2524;
  --line: rgba(17, 20, 20, 0.13);
  --display: var(--font-body, "Manrope"), "Manrope", Arial, sans-serif;
  --body: var(--font-body, "Manrope"), "Manrope", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  width: 100%;
}
.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: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}
.header-inner {
  width: min(1440px, calc(100% - 72px));
  height: 104px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.brand > span:last-child span {
  color: var(--aqua);
}
.panda-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
}
.panda-mark i {
  position: absolute;
  top: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ink);
}
.panda-mark i:first-child {
  left: 2px;
}
.panda-mark i:nth-child(2) {
  right: 2px;
}
.panda-mark b {
  position: relative;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
}
.nav > a:not(.nav-cta) {
  position: relative;
  opacity: 0.78;
}
.nav > a:not(.nav-cta):hover,
.nav > a.active {
  opacity: 1;
}
.nav > a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--aqua);
}
.nav-cta {
  padding: 12px 19px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: #fff;
}
.site-header.dark-text {
  color: var(--ink);
}
.site-header.dark-text .header-inner {
  border-bottom-color: var(--line);
}
.site-header.dark-text .panda-mark {
  background: var(--ink);
  color: #fff;
}
.site-header.dark-text .panda-mark i {
  background: var(--ink);
}
.site-header.dark-text .nav-cta {
  border-color: var(--line);
}
.site-header.dark-text .menu-toggle span {
  background: var(--ink);
}
.section {
  padding: 120px max(5vw, 48px);
}
.section-tight {
  padding: 0 max(5vw, 48px) 120px;
}
.eyebrow {
  display: inline-block;
  color: #158b83;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: var(--aqua);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--display);
  letter-spacing: -0.04em;
  line-height: 1.04;
}
h2 {
  font-size: clamp(38px, 4.3vw, 68px);
  margin: 0.5em 0 0.45em;
}
p {
  color: var(--muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}
.button.primary {
  background: var(--aqua);
  color: #0a1c1b;
}
.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}
.button.outline {
  border: 1px solid var(--line);
}
.button.pale {
  background: #fff;
  color: var(--ink);
}
.hero {
  position: relative;
  min-height: 830px;
  height: 100vh;
  max-height: 1000px;
  background: #0c1716;
  color: #fff;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 16, 15, 0.96) 0%,
      rgba(5, 16, 15, 0.72) 38%,
      rgba(5, 16, 15, 0.12) 75%
    ),
    linear-gradient(0deg, rgba(5, 16, 15, 0.55), transparent 45%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(710px, 80vw);
  padding-top: clamp(200px, 25vh, 290px);
  margin-left: max(5vw, 48px);
}
.hero h1 {
  font-size: clamp(58px, 7.6vw, 116px);
  margin: 0.18em 0 0.23em;
}
.hero h1 em {
  font-style: normal;
  color: var(--aqua);
}
.hero-copy > p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.hero-note {
  position: absolute;
  z-index: 2;
  right: max(5vw, 48px);
  bottom: 48px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.hero-note span {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 800;
}
.hero-note p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}
.app-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 740px;
  background: #eef1eb;
  overflow: hidden;
}
.app-strip > div:first-child {
  max-width: 560px;
}
.app-strip > div:first-child > p {
  max-width: 470px;
}
.store-badges {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.store-badges a {
  display: flex;
  flex-direction: column;
  background: #101212;
  color: #fff;
  border-radius: 9px;
  padding: 10px 19px;
  min-width: 155px;
  line-height: 1.15;
}
.store-badges small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.store-badges b {
  font-size: 16px;
  margin-top: 3px;
}
.phone-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}
.phone {
  position: relative;
  z-index: 2;
  width: 270px;
  height: 540px;
  padding: 10px;
  background: #111;
  border-radius: 43px;
  box-shadow: 0 36px 70px rgba(11, 40, 38, 0.28);
  transform: rotate(4deg);
}
.phone:before {
  content: "";
  position: absolute;
  width: 92px;
  height: 24px;
  border-radius: 0 0 15px 15px;
  background: #111;
  left: 50%;
  top: 9px;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  height: 100%;
  padding: 62px 22px 22px;
  border-radius: 34px;
  background: linear-gradient(155deg, #dff9f4 0%, #fff 48%, #cbeee9 100%);
  overflow: hidden;
}
.mini-logo {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--aqua);
  font-weight: 900;
}
.phone-screen > p {
  margin: 78px 0 30px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.2;
}
.mini-service {
  display: flex;
  justify-content: space-between;
  margin: 9px 0;
  padding: 13px 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
}
.mini-service span {
  color: #15958c;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(21, 139, 131, 0.28);
  border-radius: 50%;
}
.orbit-one {
  width: 470px;
  height: 470px;
}
.orbit-two {
  width: 620px;
  height: 620px;
}
.service-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8vw;
  align-items: end;
  background: #fff;
}
.service-intro > p {
  margin-bottom: 20px;
  max-width: 520px;
  font-size: 18px;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
}
.features article {
  padding: 38px 34px;
  border-left: 1px solid var(--line);
}
.features article:first-child {
  border-left: 0;
}
.features article > span,
.service-cards article > span,
.value-list article > span {
  font-size: 11px;
  font-weight: 800;
  color: #168e86;
}
.features h3 {
  font-family: var(--display);
  font-size: 22px;
  margin: 32px 0 13px;
}
.features p {
  font-size: 14px;
  margin: 0;
}
.split-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--deep);
  color: #fff;
  padding-top: 0;
  padding-bottom: 0;
}
.showcase-image {
  position: relative;
  margin-left: -5vw;
}
.showcase-image img {
  height: 740px;
  object-fit: cover;
}
.image-tag {
  position: absolute;
  left: 36px;
  bottom: 36px;
  padding: 10px 15px;
  background: rgba(10, 25, 24, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 12px;
}
.showcase-copy {
  padding: 110px max(3vw, 44px);
}
.showcase-copy > p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
}
.service-links {
  margin-top: 48px;
}
.service-links a,
.service-links button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: inherit;
  text-align: left;
  font-weight: 700;
}
.service-links a:last-child,
.service-links button:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.service-links b {
  font-size: 20px;
  color: var(--aqua);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--aqua);
  padding: 52px max(5vw, 48px);
}
.metrics div {
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-left: 1px solid rgba(8, 40, 38, 0.2);
  padding-left: 38px;
}
.metrics div:first-child {
  border-left: 0;
  padding-left: 0;
}
.metrics strong {
  font-family: var(--display);
  font-size: 48px;
}
.metrics span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.page-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 760px;
  background: #11211f;
  color: #fff;
}
.page-hero > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 180px 6vw 100px;
}
.page-hero h1 {
  font-size: clamp(58px, 6.5vw, 105px);
  margin: 0.27em 0;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.67);
  max-width: 560px;
  font-size: 18px;
}
.page-hero img {
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}
.service-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 7vw;
  background: #fff;
}
.service-grid > div:first-child h2 {
  font-size: clamp(38px, 4vw, 62px);
}
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-cards article {
  padding: 40px 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-cards h3 {
  font-family: var(--display);
  font-size: 24px;
  margin: 20px 0 10px;
}
.service-cards p {
  font-size: 14px;
  margin: 0;
}
.dark-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  padding: 110px max(5vw, 48px);
  background: #101716;
  color: #fff;
}
.dark-band h2 {
  margin-bottom: 0;
}
.steps p {
  display: flex;
  gap: 24px;
  padding: 23px 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.steps b {
  color: var(--aqua);
}
.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
  background: #fff;
}
.faq > div:last-child article {
  border-top: 1px solid var(--line);
}
.faq article button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 25px 0;
  background: none;
  border: 0;
  text-align: left;
  font-weight: 800;
}
.faq article button b {
  font-size: 22px;
  color: #158b83;
}
.faq article p {
  height: 0;
  overflow: hidden;
  margin: 0;
  transition: 0.25s;
}
.faq article.open p {
  height: auto;
  padding-bottom: 26px;
  max-width: 760px;
}
.benefits {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 7vw;
  background: #fff;
}
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.benefit-grid article {
  padding: 34px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.benefit-grid article > b {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d9f5f0;
  color: #156f69;
}
.benefit-grid h3 {
  font-family: var(--display);
  font-size: 23px;
  margin: 28px 0 10px;
}
.benefit-grid p {
  font-size: 14px;
}
.editorial-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: #143c39;
  color: #fff;
}
.editorial-split img {
  height: 690px;
  object-fit: cover;
}
.editorial-split > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 90px 6vw;
}
.editorial-split p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 30px;
}
.about-hero {
  padding: 220px max(8vw, 80px) 130px;
  background: #102422;
  color: #fff;
}
.about-hero h1 {
  font-size: clamp(62px, 8vw, 122px);
  max-width: 1250px;
  margin: 0.25em 0;
}
.about-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 20px;
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
  background: #fff;
}
.story-image {
  position: relative;
}
.story-image:before {
  content: "";
  position: absolute;
  left: -24px;
  bottom: -24px;
  width: 66%;
  height: 68%;
  background: var(--aqua);
}
.story-image img {
  position: relative;
  height: 650px;
  object-fit: cover;
}
.story > div:last-child > p {
  font-size: 17px;
}
.text-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 800;
  color: #0e7770;
}
.link-button {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}
.values {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 8vw;
}
.value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.value-list article {
  padding: 30px;
  border-left: 1px solid var(--line);
}
.value-list h3 {
  font-family: var(--display);
  font-size: 28px;
  margin: 28px 0 10px;
}
.value-list p {
  font-size: 14px;
}
.contact-page {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 860px;
  background: #102422;
  color: #fff;
  padding-top: 104px;
}
.contact-intro {
  padding: 100px max(5vw, 60px);
}
.contact-intro h1 {
  font-size: clamp(54px, 6vw, 94px);
  margin: 0.28em 0;
}
.contact-intro > p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 18px;
}
.contact-points {
  margin-top: 55px;
}
.contact-points div {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.contact-points span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.contact-points b {
  font-size: 14px;
  margin-top: 4px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 100px max(5vw, 60px);
  background: #fff;
  color: var(--ink);
}
.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bdc3c0;
  background: transparent;
  padding: 12px 0;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #168e86;
}
.contact-form .wide {
  grid-column: 1/-1;
}
.contact-form textarea {
  resize: vertical;
}
.form-note {
  font-size: 13px;
  color: #10746d;
}
.empty-shop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 720px;
  padding: 180px max(8vw, 70px) 100px;
  background: #eef2ed;
}
.empty-shop h1 {
  max-width: 850px;
  font-size: clamp(60px, 8vw, 120px);
  margin: 0.25em 0;
}
.empty-shop p {
  max-width: 650px;
  font-size: 18px;
}
.empty-shop > div {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.policy {
  max-width: 920px;
  margin: auto;
  padding: 190px 32px 120px;
}
.policy h1 {
  font-size: clamp(62px, 8vw, 112px);
  margin: 0.25em 0;
}
.policy .updated {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.policy > p {
  font-size: 17px;
}
.policy h2 {
  font-family: var(--display);
  font-size: 30px;
  margin: 1.5em 0 0.4em;
}
.policy a {
  text-decoration: underline;
  color: #0b766f;
}
.modal-backdrop {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 15, 14, 0.88);
  animation: modal-fade 0.18s ease-out;
}
.modal-backdrop[hidden] {
  display: none;
}
.contact-modal {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: #f5f7f2;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.38);
  animation: modal-rise 0.22s ease-out;
}
.modal-close {
  position: absolute;
  right: 20px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 27px;
  line-height: 1;
}
.modal-heading {
  max-width: 680px;
}
.modal-heading h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin: 0.28em 0 0.2em;
}
.modal-heading p {
  max-width: 590px;
}
.modal-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px 28px;
  margin-top: 30px;
}
.modal-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #4e5754;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #b8c0bc;
  background: transparent;
  color: var(--ink);
  outline: none;
  text-transform: none;
  letter-spacing: 0;
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: #168e86;
}
.modal-form .wide {
  grid-column: 1/-1;
}
.modal-success {
  margin: 0;
  color: #0d766e;
  font-size: 13px;
}
.modal-form .button {
  border: 0;
}
@keyframes modal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-rise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
footer {
  background: #0d1514;
  color: #fff;
  padding: 90px max(5vw, 48px) 28px;
}
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 6vw;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}
.newsletter h2 {
  font-size: clamp(36px, 4vw, 60px);
  margin-bottom: 0;
}
.newsletter form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.newsletter input {
  flex: 1;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: #fff;
  outline: none;
}
.newsletter button {
  border: 0;
  background: transparent;
  color: var(--aqua);
  font-weight: 800;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 8vw;
  padding: 65px 0;
}
.footer-grid > div:first-child p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.56);
  margin-top: 20px;
}
.footer-grid h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.48);
}
.footer-grid > div:not(:first-child) a {
  display: block;
  margin: 9px 0;
  font-size: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
@media (max-width: 980px) {
  .header-inner {
    width: calc(100% - 40px);
  }
  .menu-toggle {
    display: block;
    z-index: 2;
  }
  .nav {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 110px 28px 36px;
    background: #0d211f;
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
  }
  .nav.open {
    display: flex;
  }
  .nav-cta {
    margin-top: 8px;
  }
  .section {
    padding: 90px 28px;
  }
  .section-tight {
    padding: 0 28px 90px;
  }
  .hero-copy {
    margin-left: 28px;
  }
  .hero-note {
    right: 28px;
  }
  .app-strip,
  .service-intro,
  .split-showcase,
  .page-hero,
  .service-grid,
  .dark-band,
  .faq,
  .benefits,
  .editorial-split,
  .story,
  .values,
  .contact-page {
    grid-template-columns: 1fr;
  }
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .features article:nth-child(3) {
    border-top: 1px solid var(--line);
  }
  .showcase-image {
    margin-left: 0;
  }
  .showcase-image img,
  .editorial-split img,
  .story-image img {
    height: 560px;
  }
  .page-hero > div {
    padding: 180px 28px 80px;
  }
  .page-hero img {
    min-height: 520px;
  }
  .metrics {
    padding: 42px 28px;
  }
  .metrics div {
    flex-direction: column;
    gap: 0;
  }
  .contact-form,
  .contact-intro {
    padding: 70px 28px;
  }
  .newsletter {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }
  .about-hero {
    padding: 190px 28px 100px;
  }
  .policy {
    padding-top: 160px;
  }
}
@media (max-width: 640px) {
  .header-inner {
    height: 82px;
  }
  .hero {
    min-height: 760px;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 16, 15, 0.93), rgba(5, 16, 15, 0.38)),
      linear-gradient(0deg, rgba(5, 16, 15, 0.65), transparent);
  }
  .hero-copy {
    padding-top: 170px;
    width: calc(100% - 56px);
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-note {
    display: none;
  }
  .app-strip {
    padding-top: 80px;
  }
  .phone-card {
    min-height: 500px;
  }
  .phone {
    width: 230px;
    height: 460px;
  }
  .orbit-one {
    width: 380px;
    height: 380px;
  }
  .orbit-two {
    width: 500px;
    height: 500px;
  }
  .service-intro {
    gap: 20px;
  }
  .features,
  .service-cards,
  .benefit-grid,
  .value-list {
    grid-template-columns: 1fr;
  }
  .features article,
  .features article:first-child,
  .features article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .showcase-copy {
    padding: 80px 28px;
  }
  .metrics {
    grid-template-columns: 1fr;
  }
  .metrics div,
  .metrics div:first-child {
    flex-direction: row;
    align-items: baseline;
    border-left: 0;
    border-top: 1px solid rgba(8, 40, 38, 0.2);
    padding: 15px 0;
  }
  .metrics div:first-child {
    border-top: 0;
  }
  .page-hero {
    min-height: auto;
  }
  .page-hero > div {
    padding-top: 150px;
  }
  .page-hero h1 {
    font-size: 54px;
  }
  .page-hero img {
    min-height: 430px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form .wide {
    grid-column: auto;
  }
  .contact-intro h1 {
    font-size: 50px;
  }
  .empty-shop {
    padding: 150px 28px 90px;
  }
  .empty-shop h1 {
    font-size: 58px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .newsletter form {
    flex-direction: column;
    border: 0;
  }
  .newsletter input {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .newsletter button {
    padding: 14px 0;
    text-align: left;
  }
  .footer-bottom {
    gap: 20px;
  }
  .about-hero h1 {
    font-size: 56px;
  }
  .modal-backdrop {
    padding: 12px;
  }
  .contact-modal {
    max-height: calc(100vh - 24px);
    padding: 42px 22px 28px;
    border-radius: 20px;
  }
  .modal-heading h2 {
    font-size: 38px;
  }
  .modal-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .modal-form .wide {
    grid-column: auto;
  }
}

/* Real app screens */
.app-gallery {
  isolation: isolate;
  padding: 34px;
}
.app-device {
  position: relative;
  z-index: 4;
  display: block;
  margin: 0;
  width: min(292px, 48%);
  aspect-ratio: 620 / 1309;
  overflow: hidden;
  border: 9px solid #050807;
  border-radius: 42px;
  background: #050807;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.52);
  transform: rotate(2deg);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}
a.app-device:hover {
  border-color: #163f3a;
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.62);
  transform: rotate(0deg) translateY(-6px);
}
a.app-device:active {
  border-color: var(--aqua);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.46);
  transform: rotate(0deg) translateY(1px) scale(0.985);
}
a.app-device:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 6px;
}
.app-device img,
.app-detail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-detail {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(115, 238, 226, 0.28);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.38);
}
.app-detail-packages {
  top: 102px;
  right: 5%;
  width: min(220px, 34%);
  aspect-ratio: 540 / 602;
  transform: rotate(4deg);
}
.app-detail-checkout {
  bottom: 86px;
  left: 5%;
  width: min(230px, 36%);
  aspect-ratio: 540 / 309;
  transform: rotate(-4deg);
}

/* Team */
.team-section {
  background: var(--deep);
  color: #fff;
}
.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
  margin-bottom: 46px;
}
.team-heading h2 {
  max-width: 760px;
  margin: 0.3em 0 0;
  color: #fff;
}
.team-heading p {
  max-width: 510px;
  margin: 0;
  color: #c7d8d4;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.team-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  min-width: 0;
  min-height: 168px;
  padding: 24px;
  border: 1px solid rgba(115, 238, 226, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  align-items: center;
  gap: 18px;
}
.team-photo {
  display: block;
  width: 104px;
  height: 104px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.team-avatar {
  display: grid;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--deep);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}
.team-card h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}
.team-card p {
  margin: 0;
  color: #a9c2bd;
  font-size: 13px;
}
.team-link {
  display: inline-flex;
  margin-top: 32px;
  padding: 13px 0;
  color: var(--aqua);
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}
.team-link:hover {
  color: #fff;
  transform: translateX(4px);
}
.team-link:active {
  color: var(--aqua-strong);
  transform: translateX(1px);
}
.team-link:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 5px;
}

@media (max-width: 980px) {
  .app-device {
    width: min(310px, 52%);
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .team-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .app-gallery {
    min-height: 610px;
    padding: 22px;
  }
  .app-device {
    width: 224px;
    border-width: 7px;
    border-radius: 32px;
  }
  .app-detail-packages {
    top: 88px;
    right: -10px;
    width: 138px;
  }
  .app-detail-checkout {
    bottom: 108px;
    left: -10px;
    width: 150px;
  }
  .app-gallery .app-float-top {
    top: 24px;
  }
  .app-gallery .app-float-bottom {
    bottom: 24px;
  }
  .team-card {
    min-height: 112px;
    padding: 18px;
  }
  .team-photo {
    width: 82px;
    height: 82px;
  }
  .team-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }
}

/* 2026 visual QA pass: accessible contrast, exact media slots, and complete interaction states */
:root {
  --ink: #0b1312;
  --muted: #46524e;
  --paper: #f3f5f0;
  --aqua: #73eee2;
  --aqua-strong: #48d5c8;
  --deep: #0a2422;
  --line: rgba(11, 19, 18, 0.2);
  --display: "Syne", "Manrope", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}
body {
  font-size: 17px;
}
.site-header {
  background: linear-gradient(
    180deg,
    rgba(6, 24, 22, 0.92),
    rgba(6, 24, 22, 0.7) 72%,
    transparent
  );
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}
.site-header.dark-text {
  background: rgba(244, 246, 242, 0.94);
  text-shadow: none;
  backdrop-filter: blur(14px);
}
.site-header:not(.dark-text) .header-inner {
  border-bottom-color: rgba(255, 255, 255, 0.42);
}
h1,
h2 {
  font-weight: 700;
}
.hero-copy > p,
.page-hero p,
.about-hero p,
.contact-intro > p {
  color: rgba(255, 255, 255, 0.88);
}
.showcase-copy > p,
.editorial-split p {
  color: rgba(255, 255, 255, 0.82);
}
.footer-grid > div:first-child p {
  color: rgba(255, 255, 255, 0.76);
}
.footer-grid h3,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}
.hero {
  min-height: 760px;
  height: min(100svh, 900px);
  max-height: 900px;
}
.hero > picture,
.hero > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero > picture > img {
  object-fit: cover;
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(4, 17, 16, 0.96) 0%,
      rgba(4, 17, 16, 0.82) 41%,
      rgba(4, 17, 16, 0.25) 72%
    ),
    linear-gradient(0deg, rgba(4, 17, 16, 0.58), transparent 52%);
}
.showcase-image img,
.page-hero img,
.editorial-split img,
.story-image img {
  object-fit: cover;
  object-position: center;
}
.showcase-image img {
  height: 740px;
}
.page-hero {
  min-height: 760px;
}
.page-hero img {
  min-height: 760px;
}
.editorial-split img {
  height: 690px;
}
.story-image img {
  height: 650px;
}
.button,
.nav-cta,
.menu-toggle,
.service-links a,
.service-links button,
.store-badges a,
.text-link,
.faq article button,
.modal-close,
.newsletter button,
.brand,
.footer-grid a,
.policy a {
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.button {
  border: 1px solid transparent;
}
.button.primary {
  background: var(--aqua);
  color: #062321;
  box-shadow: 0 8px 24px rgba(77, 224, 211, 0.12);
}
.button.outline {
  border-color: #84908c;
  background: #fff;
}
.nav > a:not(.nav-cta) {
  padding: 9px 10px;
  border-radius: 10px;
  opacity: 0.88;
}
.nav-cta {
  background: rgba(3, 18, 17, 0.35);
  border-color: rgba(255, 255, 255, 0.68);
}
@media (hover: hover) {
  .menu-toggle:hover {
    background: rgba(115, 238, 226, 0.14);
    border-radius: 10px;
  }
  .brand:hover {
    opacity: 0.78;
  }
  .nav > a:not(.nav-cta):hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.13);
  }
  .site-header.dark-text .nav > a:not(.nav-cta):hover {
    background: rgba(11, 19, 18, 0.08);
  }
  .nav-cta:hover {
    background: var(--aqua);
    border-color: var(--aqua);
    color: #062321;
    text-shadow: none;
  }
  .button.primary:hover {
    background: var(--aqua-strong);
    box-shadow: 0 12px 30px rgba(77, 224, 211, 0.24);
    transform: translateY(-2px);
  }
  .button.ghost:hover {
    background: #fff;
    border-color: #fff;
    color: #0b1b19;
  }
  .button.pale:hover,
  .button.outline:hover {
    background: var(--aqua);
    border-color: var(--aqua);
    color: #062321;
    transform: translateY(-2px);
  }
  .store-badges a:hover {
    background: #24524e;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(11, 32, 30, 0.16);
  }
  .service-links a:hover,
  .service-links button:hover {
    background: rgba(115, 238, 226, 0.09);
    padding-left: 16px;
    padding-right: 16px;
  }
  .text-link:hover,
  .footer-grid a:hover,
  .policy a:hover {
    color: #16a79d;
  }
  .faq article button:hover {
    background: #eef5f1;
    padding-left: 14px;
    padding-right: 14px;
  }
  .modal-close:hover {
    background: #102422;
    color: #fff;
    border-color: #102422;
  }
  .newsletter button:hover {
    color: #fff;
  }
  .contact-form input:hover,
  .contact-form select:hover,
  .contact-form textarea:hover,
  .modal-form input:hover,
  .modal-form select:hover,
  .modal-form textarea:hover {
    border-color: #56635f;
  }
}
a:active,
button:active {
  transform: translateY(1px) scale(0.975) !important;
  box-shadow: none !important;
}
.service-links a:active,
.service-links button:active,
.faq article button:active {
  background: rgba(115, 238, 226, 0.16);
}
.contact-form input:active,
.contact-form select:active,
.contact-form textarea:active,
.modal-form input:active,
.modal-form select:active,
.modal-form textarea:active {
  background: #edf4f0;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #16b9ae;
  outline-offset: 4px;
}
.site-header:not(.dark-text) a:focus-visible,
.site-header:not(.dark-text) button:focus-visible,
footer a:focus-visible,
footer button:focus-visible,
footer input:focus-visible,
.page-hero a:focus-visible,
.page-hero button:focus-visible,
.hero a:focus-visible,
.hero button:focus-visible {
  outline-color: #8efff3;
}
.contact-form input,
.contact-form select,
.contact-form textarea,
.modal-form input,
.modal-form select,
.modal-form textarea {
  border-bottom-color: #7a8682;
  color: #111b19;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: #66726e;
  opacity: 1;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: #0e8179;
  background: #f1f7f4;
}
.info-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #c7d0cc;
}
.info-band article {
  padding: 42px max(3vw, 30px);
  background: #e9efeb;
}
.info-band span {
  color: #0e7770;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.info-band h3 {
  font-family: var(--display);
  font-size: 24px;
  margin: 16px 0 8px;
}
.info-band p {
  margin: 0;
  font-size: 15px;
}
.content-note {
  padding: 34px;
  border: 1px solid var(--line);
  background: #f1f6f2;
}
.content-note h3 {
  font-family: var(--display);
  font-size: 25px;
  margin: 0 0 14px;
}
.content-note ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.content-note li + li {
  margin-top: 9px;
}
.service-details {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7vw;
  background: #edf2ee;
}
.detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #bdc8c3;
}
.detail-list article {
  background: #fff;
  padding: 34px;
}
.detail-list h3 {
  font-family: var(--display);
  font-size: 23px;
  margin: 12px 0 9px;
}
.detail-list p {
  margin: 0;
  font-size: 15px;
}
.detail-list span {
  color: #0e7770;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #bdc8c3;
}
.expect-grid article {
  background: #fff;
  padding: 32px;
}
.expect-grid h3 {
  font-family: var(--display);
  font-size: 21px;
  margin: 14px 0 8px;
}
.expect-grid p {
  margin: 0;
  font-size: 14px;
}
.metrics strong {
  font-size: 27px;
}
.metrics span {
  font-size: 12px;
  letter-spacing: 0.07em;
}
.newsletter {
  grid-template-columns: 1.25fr 0.75fr;
}
.newsletter-cta {
  display: flex;
  justify-content: flex-end;
}
.newsletter-cta .button {
  min-width: 190px;
}
.contact-page {
  min-height: 780px;
}
.page-hero h1 {
  font-size: clamp(52px, 5.5vw, 86px);
}
.about-hero {
  padding: 180px max(8vw, 80px) 96px;
}
.about-hero h1 {
  max-width: 1080px;
  font-size: clamp(54px, 7vw, 100px);
}
.contact-intro h1 {
  font-size: clamp(48px, 5.2vw, 78px);
}
.contact-form {
  align-content: center;
}
.contact-hint {
  grid-column: 1/-1;
  padding: 20px 22px;
  background: #edf4f0;
  border-left: 4px solid #16a79d;
  color: #33403c;
  font-size: 14px;
}
.contact-hint strong {
  display: block;
  color: #0b1312;
  margin-bottom: 5px;
}
@media (max-width: 980px) {
  .site-header {
    background: rgba(6, 24, 22, 0.88);
  }
  .hero {
    height: 820px;
  }
  .page-hero img {
    min-height: 560px;
  }
  .info-band,
  .service-details,
  .expect-grid {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-image img,
  .editorial-split img,
  .story-image img {
    height: auto;
    aspect-ratio: 4/3;
  }
  .newsletter-cta {
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  .hero {
    height: 780px;
  }
  .hero > picture > img {
    object-position: center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 17, 16, 0.94), rgba(4, 17, 16, 0.58)),
      linear-gradient(0deg, rgba(4, 17, 16, 0.68), transparent);
  }
  .page-hero img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4/5;
  }
  .info-band,
  .service-details,
  .expect-grid,
  .detail-list {
    grid-template-columns: 1fr;
  }
  .metrics strong {
    font-size: 23px;
  }
  .newsletter-cta .button {
    width: 100%;
  }
  .contact-hint {
    grid-column: auto;
  }
  .about-hero {
    padding: 150px 28px 76px;
  }
  .nav > a:not(.nav-cta) {
    padding-left: 0;
  }
  .nav {
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final visual, SEO and first-viewport refinement */
.header-inner {
  height: 92px;
}
.hero {
  min-height: 680px;
  height: min(100svh, 860px);
  max-height: 860px;
}
.hero-copy {
  display: flex;
  height: 100%;
  width: min(780px, 52vw);
  padding-top: 92px;
  margin-left: max(5vw, 48px);
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  max-width: 780px;
  margin: 0.24em 0 0.22em;
  font-size: clamp(54px, 4.7vw, 88px);
  line-height: 0.98;
}
.hero-copy > p {
  max-width: 570px;
  margin-bottom: 0;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.6;
}
.hero-actions {
  margin-top: 26px;
}
.hero-note {
  bottom: 34px;
}

.app-strip {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(54px, 7vw, 120px);
  min-height: 760px;
  padding-top: 88px;
  padding-bottom: 88px;
  background:
    radial-gradient(
      circle at 8% 14%,
      rgba(115, 238, 226, 0.26),
      transparent 24%
    ),
    linear-gradient(135deg, #f6f8f3 0%, #e9efea 100%);
}
.app-strip::before {
  content: "";
  position: absolute;
  inset: 0 0 0 56%;
  background: var(--deep);
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
}
.app-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}
.app-copy h2 {
  max-width: 640px;
  margin: 0.34em 0 0.3em;
  font-size: clamp(42px, 4vw, 64px);
}
.app-lead {
  max-width: 590px;
  margin-bottom: 28px;
  font-size: 17px;
}
.app-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 36, 34, 0.16);
  border-radius: 18px;
  background: rgba(10, 36, 34, 0.14);
  list-style: none;
}
.app-steps li {
  min-width: 0;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.76);
}
.app-steps li > span {
  display: block;
  margin-bottom: 14px;
  color: #0e8179;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.app-steps b,
.app-steps small {
  display: block;
}
.app-steps b {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}
.app-steps small {
  margin-top: 5px;
  color: #596561;
  font-size: 11px;
  line-height: 1.45;
}
.store-badges {
  margin-top: 24px;
}
.store-badges a {
  min-width: 174px;
  min-height: 60px;
  padding: 10px 16px;
  border: 1px solid #101212;
  border-radius: 12px;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}
.store-badges a > span:last-child {
  display: flex;
  flex-direction: column;
}
.store-symbol {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  color: var(--aqua);
  font-size: 14px;
  font-weight: 800;
}
.store-symbol.play {
  font-size: 11px;
}
.phone-card {
  z-index: 2;
  min-height: 584px;
  border: 1px solid rgba(115, 238, 226, 0.18);
  border-radius: 36px;
  background:
    linear-gradient(rgba(115, 238, 226, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 238, 226, 0.08) 1px, transparent 1px),
    radial-gradient(
      circle at 50% 44%,
      rgba(115, 238, 226, 0.2),
      transparent 44%
    ),
    #081d1b;
  background-size:
    42px 42px,
    42px 42px,
    auto,
    auto;
  box-shadow: 0 38px 85px rgba(7, 29, 27, 0.24);
}
.phone {
  width: 278px;
  height: 548px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #080c0c;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.52);
  transform: rotate(2deg);
}
.phone-screen {
  padding: 52px 20px 20px;
  background: linear-gradient(155deg, #e6fbf7 0%, #ffffff 48%, #cdf3ed 100%);
}
.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-top small {
  color: #53615e;
  font-size: 10px;
  font-weight: 800;
}
.phone-kicker {
  display: block;
  margin-top: 38px;
  color: #167f78;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.phone-screen h3 {
  max-width: 210px;
  margin: 8px 0 20px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.05;
}
.phone-screen > p {
  display: none;
}
.mini-service {
  align-items: center;
  margin: 8px 0;
  padding: 12px 13px;
  border-color: rgba(10, 36, 34, 0.1);
  box-shadow: 0 6px 18px rgba(10, 36, 34, 0.07);
}
.mini-service b,
.mini-service small {
  display: block;
}
.mini-service b {
  color: var(--ink);
  font-size: 11px;
}
.mini-service small {
  margin-top: 2px;
  color: #68736f;
  font-size: 8px;
}
.mini-service i {
  color: #158b83;
  font-style: normal;
}
.phone-action {
  display: grid;
  min-height: 42px;
  margin-top: 14px;
  place-items: center;
  border-radius: 12px;
  background: var(--deep);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.app-float {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 176px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(244, 249, 246, 0.95);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  flex-direction: column;
  backdrop-filter: blur(14px);
}
.app-float span {
  color: #14776f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.app-float b {
  margin-top: 4px;
  color: var(--ink);
  font-size: 13px;
}
.app-float-top {
  top: 72px;
  left: 7%;
}
.app-float-bottom {
  right: 6%;
  bottom: 70px;
}
.phone-card .orbit {
  border-color: rgba(115, 238, 226, 0.23);
}
.phone-card .orbit-one {
  width: 440px;
  height: 440px;
}
.phone-card .orbit-two {
  width: 560px;
  height: 560px;
}

@media (max-width: 1180px) {
  .hero-copy {
    width: min(690px, 56vw);
  }
  .hero h1 {
    font-size: clamp(52px, 5.5vw, 76px);
  }
  .app-strip {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
    gap: 44px;
  }
  .app-steps {
    grid-template-columns: 1fr;
  }
  .app-steps li {
    display: grid;
    grid-template-columns: 34px 1fr;
    padding: 13px 15px;
  }
  .app-steps li > span {
    margin: 2px 0 0;
  }
}
@media (max-width: 980px) {
  .header-inner {
    height: 84px;
  }
  .hero {
    min-height: 720px;
    height: min(100svh, 800px);
  }
  .hero-copy {
    width: min(650px, calc(100% - 56px));
    padding-top: 84px;
  }
  .hero h1 {
    font-size: clamp(54px, 9vw, 76px);
  }
  .app-strip {
    grid-template-columns: 1fr;
    padding-top: 78px;
    padding-bottom: 78px;
  }
  .app-strip::before {
    inset: 50% 0 0;
    clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 100%);
  }
  .app-copy {
    max-width: 760px;
  }
  .app-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .app-steps li {
    display: block;
    padding: 18px 16px;
  }
  .app-steps li > span {
    margin-bottom: 12px;
  }
  .phone-card {
    margin-top: 34px;
  }
}
@media (max-width: 640px) {
  .hero {
    min-height: 720px;
    height: 100svh;
    max-height: 780px;
  }
  .hero-copy {
    width: calc(100% - 48px);
    margin-left: 24px;
    padding-top: 82px;
  }
  .hero h1 {
    font-size: clamp(45px, 13vw, 56px);
  }
  .hero-actions {
    width: 100%;
    gap: 10px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .app-strip {
    padding: 66px 20px;
  }
  .app-copy h2 {
    font-size: 39px;
  }
  .app-steps {
    grid-template-columns: 1fr;
  }
  .app-steps li {
    display: grid;
    grid-template-columns: 36px 1fr;
    padding: 13px 14px;
  }
  .app-steps li > span {
    margin: 2px 0 0;
  }
  .store-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .store-badges a {
    min-width: 0;
    padding: 10px 11px;
  }
  .store-symbol {
    display: none;
  }
  .phone-card {
    min-height: 520px;
    margin-top: 28px;
    border-radius: 26px;
  }
  .phone {
    width: 238px;
    height: 475px;
  }
  .phone-card .orbit-one {
    width: 330px;
    height: 330px;
  }
  .phone-card .orbit-two {
    width: 420px;
    height: 420px;
  }
  .app-float {
    min-width: 145px;
    padding: 11px 13px;
  }
  .app-float-top {
    top: 38px;
    left: -4px;
  }
  .app-float-bottom {
    right: -4px;
    bottom: 38px;
  }
}

/* Keep the real-screen composition above legacy responsive phone rules. */
@media (max-width: 640px) {
  .phone-card.app-gallery {
    min-height: 610px;
    padding: 22px;
  }
  .app-gallery .app-float-top {
    top: 24px;
  }
  .app-gallery .app-float-bottom {
    right: -4px;
    bottom: 24px;
  }
}
