:root {
  --navy: #0b3d58;
  --teal: #179b96;
  --teal-dark: #087a76;
  --foam: #e7f5f3;
  --sand: #c99a58;
  --milk: #f8fafa;
  --ink: #1d2a32;
  --muted: #6e838f;
  --line: #dce7e8;
  --danger: #b84242;
  --shadow: 0 12px 36px rgba(11, 61, 88, 0.12);
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--milk);
  color: var(--ink);
  font-family:
    Manrope,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
}
.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  max-width: 1280px;
  margin: auto;
  padding: 0 40px;
  background: rgba(248, 250, 250, 0.9);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1.1px;
  color: var(--navy);
  white-space: nowrap;
}
.brand span {
  color: var(--teal);
}
.desktop-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: var(--navy);
}
.header-cta {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 3px 14px rgba(12, 50, 65, 0.08);
  font-size: 12px;
  font-weight: 800;
}
.menu-button,
.mobile-menu,
.mobile-demo {
  display: none;
}
.hero {
  min-height: 720px;
  background-image: url("assets/hero-beach-app.png");
  background-size: cover;
  background-position: center center;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 72px max(40px, calc((100vw - 1360px) / 2));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 38, 55, 0.93) 0%,
    rgba(5, 38, 55, 0.82) 36%,
    rgba(5, 38, 55, 0.42) 57%,
    rgba(5, 38, 55, 0.06) 76%
  );
}
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 570px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: #b9f0e9;
}
.hero h1 {
  margin: 0;
  font-size: clamp(48px, 5.7vw, 76px);
  line-height: 1.01;
  letter-spacing: -0.06em;
  font-weight: 800;
}
.hero-text {
  max-width: 455px;
  margin: 22px 0 0;
  color: #e1f0f0;
  font-size: 16px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}
.btn {
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(11, 61, 88, 0.22);
}
.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}
.text-link.light {
  color: #fff;
}
.demo-note {
  margin: 20px 0 0;
  font-size: 10px;
  line-height: 1.45;
  color: var(--muted);
}
.demo-note.light {
  color: #b8ced5;
}
.hero-media {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media img {
  width: min(680px, 53vw);
  margin-right: -8vw;
  filter: drop-shadow(0 35px 34px rgba(0, 0, 0, 0.35));
  transform: rotate(-2deg);
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(221, 255, 251, 0.14);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one {
  width: 770px;
  height: 770px;
  right: -370px;
  top: -100px;
}
.orbit-two {
  width: 440px;
  height: 440px;
  left: -250px;
  bottom: -200px;
}
.section-pad {
  padding: 120px max(40px, calc((100vw - 1360px) / 2));
}
.section-intro {
  max-width: 690px;
}
.section-intro h2,
.balance-copy h2,
.place-copy h2,
.faq-aside h2,
.final-copy h2 {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.052em;
  color: var(--navy);
}
.section-intro > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.problem {
  background: #fff;
}
.fragment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 46px;
}
.fragment {
  min-height: 218px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  background: var(--milk);
}
.fragment-no {
  font-size: 12px;
  color: var(--teal);
  font-weight: 800;
}
.fragment h3 {
  margin: 44px 0 7px;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.fragment p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.fragment.feature {
  background: var(--foam);
  border-color: transparent;
  justify-content: space-between;
}
.fragment.feature .brand {
  font-size: 22px;
}
.fragment.feature p {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}
.how {
  background: var(--milk);
}
.flow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 48px;
}
.flow article {
  width: 24%;
  min-height: 194px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 5px 17px rgba(11, 61, 88, 0.055);
}
.flow article span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--foam);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
}
.flow h3 {
  margin: 28px 0 7px;
  font-size: 16px;
  letter-spacing: -0.03em;
}
.flow p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.52;
}
.flow i {
  align-self: center;
  display: block;
  width: 20px;
  height: 1px;
  background: var(--teal);
  position: relative;
  flex: 1;
  margin-top: -28px;
}
.flow i:after {
  content: "›";
  position: absolute;
  right: -2px;
  top: -13px;
  color: var(--teal);
  font-size: 22px;
}
.quiet-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 17px;
  border-radius: 15px;
  background: var(--foam);
  color: var(--navy);
  font-size: 12px;
  line-height: 1.45;
}
.quiet-note b {
  color: var(--teal-dark);
}
.app-section {
  background: #e6f2f1;
}
.app-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  margin-top: 47px;
}
.screen-tabs {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.tab {
  padding: 18px 18px;
  border: 1px solid transparent;
  border-radius: 16px;
  text-align: left;
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}
.tab.is-active {
  background: #fff;
  border-color: #cfe3e1;
  color: var(--navy);
  box-shadow: 0 8px 23px rgba(11, 61, 88, 0.07);
}
.tab-copy {
  min-height: 90px;
  margin: 12px 0 8px;
  padding: 2px 18px;
}
.tab-copy strong {
  font-size: 16px;
  letter-spacing: -0.025em;
}
.tab-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.screen-tabs .btn {
  align-self: flex-start;
}
.phone-stage {
  height: 540px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-stage img {
  position: relative;
  z-index: 1;
  max-height: 540px;
  filter: drop-shadow(0 24px 24px rgba(11, 61, 88, 0.2));
  transition:
    opacity 0.22s,
    transform 0.22s;
}
.phone-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(23, 155, 150, 0.18);
  filter: blur(4px);
}
.center {
  text-align: center;
  max-width: 650px;
  margin: 15px auto 0;
}
.balance-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  background: var(--navy);
  color: #fff;
}
.balance-visual {
  height: 530px;
  border-radius: 30px;
  background: linear-gradient(145deg, #0e506e, #0a334a);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.balance-visual img {
  height: 480px;
  margin-bottom: -8px;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.34));
}
.balance-copy h2 {
  color: #fff;
}
.balance-copy > p:not(.micro) {
  margin: 20px 0 0;
  color: #d6e5e8;
  font-size: 15px;
  line-height: 1.65;
}
.balance-copy ul {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.balance-copy li {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.balance-copy li:before {
  content: "✓";
  color: #8ce3db;
  margin-right: 9px;
}
.micro {
  font-size: 10px;
  line-height: 1.55;
  color: var(--muted);
}
.balance-copy .micro {
  margin-top: 24px;
  color: #a6c1c9;
}
.scenarios {
  background: #fff;
}
.scenario-grid {
  display: grid;
  grid-template-columns: 1.22fr 1fr 1fr;
  gap: 14px;
  margin-top: 45px;
}
.scenario-card {
  min-height: 455px;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  text-align: left;
  color: #fff;
  padding: 20px;
  background: var(--navy);
}
.scenario-card video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.5s;
}
.scenario-card:hover video {
  transform: scale(1.06);
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 31, 46, 0.05),
    rgba(4, 31, 46, 0.72)
  );
}
.scenario-index,
.scenario-label,
.scenario-arrow {
  position: absolute;
  z-index: 1;
}
.scenario-index {
  left: 20px;
  top: 19px;
  font-size: 11px;
  font-weight: 800;
}
.scenario-label {
  left: 20px;
  right: 48px;
  bottom: 22px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.04em;
}
.scenario-arrow {
  right: 19px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
}
.video-note {
  margin: 13px 0 0;
}
.place {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  background: #fff;
}
.place-copy {
  max-width: 720px;
}
.place-copy > p:not(.micro) {
  margin: 21px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}
.place-copy .micro {
  margin: 20px 0 0;
}
.place-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1.28;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  padding: 0;
  background: var(--navy);
  cursor: zoom-in;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(4, 31, 46, 0.54));
  pointer-events: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}
.gallery-item:focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 3px;
}
.gallery-item span {
  position: absolute;
  z-index: 1;
  left: 16px;
  bottom: 13px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.place-gallery-note {
  margin: -26px 0 0;
}
.gallery-dialog {
  width: min(1180px, calc(100vw - 32px));
  height: min(86vh, 860px);
  border: 0;
  border-radius: 24px;
  padding: 28px 76px 48px;
  background: #071f2d;
  color: #fff;
  overflow: hidden;
}
.gallery-dialog::backdrop {
  background: rgba(2, 18, 27, 0.82);
  backdrop-filter: blur(5px);
}
.gallery-dialog figure {
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 14px;
}
.gallery-full-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}
.gallery-caption,
.gallery-counter {
  margin: 0;
  color: #d9edf0;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}
.gallery-counter {
  position: absolute;
  bottom: 17px;
  left: 50%;
  transform: translateX(-50%);
  color: #91e3dc;
  font-weight: 800;
}
.gallery-close,
.gallery-nav {
  position: absolute;
  z-index: 2;
  border: 0;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.gallery-close {
  top: 17px;
  right: 17px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 27px;
}
.gallery-nav {
  top: calc(50% - 14px);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 22px;
}
.gallery-prev {
  left: 17px;
}
.gallery-next {
  right: 17px;
}
.value {
  background: var(--foam);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 47px;
}
.value-grid article {
  min-height: 225px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
}
.value-grid span {
  color: var(--teal);
  font-size: 26px;
}
.value-grid h3 {
  margin: 44px 0 8px;
  font-size: 17px;
  letter-spacing: -0.03em;
}
.value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  background: #fff;
}
.faq-aside > p:not(.eyebrow) {
  margin: 19px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  min-height: 79px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 26px;
  font-weight: 400;
  color: var(--teal);
  transition: transform 0.2s;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  max-width: 570px;
  margin: -10px 44px 22px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.final-cta {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 84px max(40px, calc((100vw - 1360px) / 2));
  display: flex;
  align-items: center;
}
.final-copy {
  max-width: 640px;
  position: relative;
  z-index: 2;
}
.final-copy h2 {
  color: #fff;
}
.final-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 18px 0 0;
  color: #d5e4e7;
  font-size: 15px;
  line-height: 1.6;
}
.final-copy .btn {
  margin-top: 27px;
}
.final-copy small {
  display: block;
  max-width: 470px;
  margin-top: 16px;
  color: #aac3cb;
  font-size: 10px;
  line-height: 1.5;
}
.final-phone {
  position: absolute;
  right: 12%;
  bottom: -70px;
  max-height: 505px;
  filter: drop-shadow(0 22px 29px rgba(0, 0, 0, 0.34));
  transform: rotate(5deg);
}
footer {
  min-height: 100px;
  padding: 0 max(40px, calc((100vw - 1360px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
}
footer .brand {
  font-size: 20px;
}
footer a:last-child {
  font-weight: 800;
  color: var(--navy);
}
.scenario-dialog {
  width: min(560px, calc(100% - 30px));
  border: 0;
  border-radius: 24px;
  padding: 32px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 25px 90px rgba(0, 0, 0, 0.32);
}
.scenario-dialog::backdrop {
  background: rgba(4, 31, 46, 0.6);
}
.dialog-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--foam);
  color: var(--navy);
  font-size: 25px;
}
.scenario-dialog h2 {
  margin: 0;
  color: var(--navy);
  font-size: 29px;
  letter-spacing: -0.05em;
}
.dialog-text {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.dialog-timeline {
  display: grid;
  gap: 9px;
  margin: 22px 0;
}
.timeline-row {
  border-left: 2px solid var(--teal);
  padding: 5px 0 5px 12px;
  color: var(--muted);
  font-size: 12px;
}
.timeline-row strong {
  display: block;
  color: var(--navy);
}
.packages {
  background: #fff;
}
.packages-top,
.services-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 76px;
}
.packages-top > img,
.services-heading > img {
  justify-self: center;
  max-height: 405px;
  max-width: 100%;
  filter: drop-shadow(0 20px 24px rgba(11, 61, 88, 0.16));
}
.numbers-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.numbers-bar article {
  padding: 24px 28px;
  background: var(--milk);
}
.numbers-bar article + article {
  border-left: 1px solid var(--line);
}
.numbers-bar strong {
  display: block;
  color: var(--navy);
  font-size: clamp(22px, 2.3vw, 34px);
  letter-spacing: -0.05em;
}
.numbers-bar span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.package-card {
  min-height: 366px;
  padding: 27px;
  border-radius: 23px;
  background: var(--milk);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.package-card.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 16px 30px rgba(11, 61, 88, 0.18);
}
.package-card > p {
  margin: 0;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
}
.package-card.featured > p {
  color: #91e3dc;
}
.package-card h3 {
  margin: 24px 0 14px;
  font-size: 24px;
  letter-spacing: -0.045em;
}
.package-card > strong {
  font-size: 31px;
  letter-spacing: -0.055em;
  color: var(--navy);
}
.package-card.featured > strong {
  color: #fff;
}
.package-card small {
  font-size: 11px;
  letter-spacing: 0;
  color: var(--muted);
}
.package-card.featured small {
  color: #c7dce0;
}
.package-card ul {
  margin: 25px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.package-card li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.package-card.featured li {
  color: #d5e5e8;
}
.package-card li:before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
  margin-right: 8px;
}
.package-card > span {
  margin-top: auto;
  color: var(--muted);
  font-size: 10px;
}
.package-card.featured > span {
  color: #9bbbc3;
}
.package-disclaimer {
  margin: 13px 0 0;
}
.journey {
  background: #fff;
}
.journey-rows {
  margin-top: 48px;
  display: grid;
  gap: 14px;
}
.journey-rows article {
  min-height: 320px;
  border-radius: 26px;
  padding: 34px 38px;
  background: var(--milk);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  overflow: hidden;
}
.journey-rows article:nth-child(2) {
  background: var(--foam);
}
.journey-rows article:nth-child(3) {
  background: #edf2f2;
}
.journey-copy b {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--teal-dark);
  text-transform: uppercase;
}
.journey-copy h3 {
  margin: 19px 0 12px;
  color: var(--navy);
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.journey-copy p {
  margin: 0;
  max-width: 380px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.screens-pair,
.screens-triple {
  height: 254px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
}
.screens-pair img,
.screens-triple img {
  max-height: 300px;
  max-width: 42%;
  filter: drop-shadow(0 15px 17px rgba(11, 61, 88, 0.18));
  transition: transform 0.25s;
}
.screens-pair img:nth-child(2) {
  transform: translateY(23px) rotate(4deg);
}
.screens-triple {
  gap: 8px;
}
.screens-triple img {
  max-width: 31%;
  max-height: 286px;
}
.screens-triple img:nth-child(1) {
  transform: rotate(-6deg) translateY(15px);
}
.screens-triple img:nth-child(3) {
  transform: rotate(6deg) translateY(15px);
}
.journey-note {
  margin: 12px 0 0;
}
.services-section {
  background: var(--foam);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 44px;
}
.services-grid article {
  min-height: 176px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
}
.services-grid b {
  font-size: 11px;
  color: var(--teal);
}
.services-grid h3 {
  margin: 34px 0 6px;
  color: var(--navy);
  font-size: 16px;
  letter-spacing: -0.035em;
}
.services-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.service-disclaimer {
  margin: 12px 0 0;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .packages-top,
  .services-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .packages-top > img,
  .services-heading > img {
    max-height: 360px;
  }
  .numbers-bar {
    grid-template-columns: 1fr;
  }
  .numbers-bar article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  .package-card {
    min-height: 310px;
  }
  .journey-rows article {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 18px;
  }
  .screens-pair,
  .screens-triple {
    height: 235px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-header {
    padding: 0 22px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    font-size: 19px;
  }
  .header-cta {
    display: none;
  }
  .mobile-menu {
    position: fixed;
    z-index: 19;
    top: 66px;
    left: 12px;
    right: 12px;
    padding: 14px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .mobile-menu:not([hidden]) {
    display: grid;
  }
  .mobile-menu a {
    padding: 12px;
    color: var(--navy);
    font-weight: 800;
    font-size: 14px;
  }
  .mobile-menu .btn {
    margin-top: 4px;
  }
  .hero {
    min-height: 700px;
    display: flex;
    padding: 58px 24px 0;
    align-items: flex-start;
    background-position: 58% center;
  }
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(5, 38, 55, 0.9) 0%,
      rgba(5, 38, 55, 0.72) 47%,
      rgba(5, 38, 55, 0.18) 100%
    );
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-media {
    height: 328px;
    margin-top: 35px;
    align-items: flex-end;
  }
  .hero-media img {
    width: 540px;
    max-width: none;
    margin-right: -125px;
  }
  .section-pad {
    padding: 78px 24px;
  }
  .fragment-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .flow article {
    width: auto;
  }
  .flow i {
    display: none;
  }
  .app-showcase,
  .balance-section,
  .place,
  .faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .phone-stage {
    height: 470px;
    order: -1;
  }
  .phone-stage img {
    max-height: 470px;
  }
  .balance-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }
  .balance-visual {
    height: 440px;
  }
  .balance-visual img {
    height: 410px;
  }
  .scenario-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .scenario-card {
    min-height: 330px;
  }
  .scenario-card:first-child {
    min-height: 420px;
  }
  .place-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-dialog {
    width: calc(100vw - 20px);
    height: min(82vh, 760px);
    padding: 24px 54px 48px;
    border-radius: 20px;
  }
  .gallery-nav {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .gallery-prev {
    left: 8px;
  }
  .gallery-next {
    right: 8px;
  }
  .place-image {
    height: 360px;
  }
  .faq {
    gap: 40px;
  }
  .final-phone {
    right: -70px;
    max-height: 380px;
  }
  .final-cta {
    min-height: 480px;
    padding: 67px 24px;
  }
  .final-copy {
    max-width: 530px;
  }
  footer {
    padding: 25px 24px;
    align-items: flex-start;
    flex-direction: column;
  }
  .mobile-demo {
    display: flex;
    position: fixed;
    z-index: 18;
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-height: 54px;
    border-radius: 17px;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 14px 32px rgba(11, 61, 88, 0.3);
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 800;
  }
  .final-cta {
    padding-bottom: 100px;
  }
}
@media (max-width: 480px) {
  .site-header {
    height: 64px;
    padding: 0 18px;
  }
  .brand {
    font-size: 22px;
  }
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero-text {
    font-size: 14px;
  }
  .hero-actions {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
  }
  .section-pad {
    padding: 66px 20px;
  }
  .section-intro h2,
  .balance-copy h2,
  .place-copy h2,
  .faq-aside h2,
  .final-copy h2 {
    font-size: 34px;
  }
  .fragment {
    min-height: 168px;
    padding: 17px;
  }
  .fragment h3 {
    margin-top: 25px;
    font-size: 15px;
  }
  .fragment.feature p {
    font-size: 12px;
  }
  .flow {
    grid-template-columns: 1fr;
  }
  .flow article {
    min-height: 146px;
  }
  .app-showcase {
    margin-top: 29px;
  }
  .phone-stage {
    height: 420px;
  }
  .phone-stage img {
    max-height: 420px;
  }
  .balance-visual {
    height: 390px;
  }
  .balance-visual img {
    height: 365px;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .value-grid article {
    min-height: 170px;
  }
  .value-grid h3 {
    margin-top: 20px;
  }
  .scenario-card {
    min-height: 290px;
  }
  .scenario-card:first-child {
    min-height: 370px;
  }
  .place {
    gap: 30px;
  }
  .place-image {
    height: 300px;
  }
  .final-phone {
    display: none;
  }
  .final-cta {
    min-height: 460px;
  }
  .scenario-dialog {
    padding: 29px 22px;
  }
  .scenario-dialog h2 {
    font-size: 26px;
  }
}
