:root {
  --navy: #0b122d;
  --ink: #111a3a;
  --muted: #696f85;
  --canvas: #fff8f2;
  --surface: #fffdfc;
  --white: #ffffff;
  --coral: #ff6b8a;
  --peach: #ffb347;
  --violet: #624bff;
  --blue: #6d66ef;
  --mint: #00bfa9;
  --line: rgba(31, 37, 66, 0.1);
  --soft-line: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 70px rgba(44, 37, 101, 0.14);
  --shadow-soft: 0 16px 40px rgba(44, 37, 101, 0.1);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --content: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 3%, rgba(109, 102, 239, 0.14), transparent 28rem),
    radial-gradient(circle at 92% 10%, rgba(255, 179, 71, 0.15), transparent 26rem),
    linear-gradient(135deg, #f8f5ff 0%, var(--canvas) 46%, #fff0e7 100%);
  font-family: "Avenir Next", Avenir, "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(98, 75, 255, 0.08) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  content: "";
  opacity: 0.45;
  pointer-events: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(98, 75, 255, 0.35);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  padding: 18px 0;
  transition: padding 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 251, 248, 0.76);
  box-shadow: 0 10px 32px rgba(24, 28, 66, 0.06);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  backdrop-filter: blur(22px) saturate(1.35);
}

.nav-shell {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 204px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav > a:not(.button) {
  padding: 10px 13px;
  border-radius: 12px;
  color: #525872;
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
}

.site-nav > a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.site-nav > .nav-store {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-beta,
.footer-beta {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--soft-line);
  border-radius: 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  place-items: center;
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 0;
  border-radius: 17px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.1px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #dd4fa9 48%, var(--violet));
  box-shadow: 0 13px 30px rgba(212, 67, 146, 0.25);
}

.button-primary:hover {
  box-shadow: 0 16px 36px rgba(212, 67, 146, 0.33);
}

.button-secondary {
  border: 1px solid rgba(64, 54, 112, 0.1);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(39, 32, 78, 0.08);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 14px;
}

.button svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: 160px 0 104px;
}

.hero::after {
  position: absolute;
  top: 115px;
  right: -120px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 179, 71, 0.25), rgba(255, 107, 138, 0.12), rgba(98, 75, 255, 0.22));
  filter: blur(10px);
  content: "";
  opacity: 0.72;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
}

.eyebrow,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(98, 75, 255, 0.12);
  color: #5542c9;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 25px rgba(56, 45, 113, 0.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.eyebrow {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(0, 191, 169, 0.11);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: 0.99;
  letter-spacing: -0.062em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(115deg, #f29a3d 0%, var(--coral) 30%, #d53fa5 58%, var(--violet) 89%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 620px;
  margin-bottom: 30px;
  color: #5f657b;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 0;
  padding: 0;
  color: #6e7488;
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.hero-note li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-note svg {
  width: 16px;
  height: 16px;
  color: var(--mint);
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
}

.phone-stage::before,
.phone-stage::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(2px);
}

.phone-stage::before {
  width: 390px;
  height: 390px;
  background: linear-gradient(145deg, rgba(255, 179, 71, 0.24), rgba(255, 107, 138, 0.18), rgba(98, 75, 255, 0.26));
}

.phone-stage::after {
  width: 462px;
  height: 462px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.44);
}

.orbit-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  font-size: 12px;
  font-weight: 750;
}

.orbit-pill svg {
  width: 19px;
  height: 19px;
  color: var(--violet);
}

.orbit-weather {
  top: 92px;
  right: -12px;
  animation: float 5.5s ease-in-out infinite;
}

.orbit-team {
  bottom: 104px;
  left: -26px;
  animation: float 6s ease-in-out 0.8s infinite;
}

.phone {
  position: relative;
  z-index: 3;
  width: 292px;
  min-height: 596px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 46px;
  background: linear-gradient(145deg, #292838, #070812 70%);
  box-shadow: 0 42px 90px rgba(24, 21, 66, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: rotate(2.2deg);
}

.phone-screen {
  position: relative;
  min-height: 574px;
  overflow: hidden;
  padding: 26px 14px 14px;
  border-radius: 37px;
  background:
    radial-gradient(circle at 18% 1%, rgba(109, 102, 239, 0.17), transparent 170px),
    linear-gradient(145deg, #f9f6ff, #fff9f4 55%, #fff1ea);
}

.dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 84px;
  height: 23px;
  border-radius: 99px;
  background: #080910;
  transform: translateX(-50%);
}

.phone-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 4px 12px;
}

.phone-kicker {
  margin: 0;
  color: #7a7e91;
  font-size: 9px;
  font-weight: 650;
}

.phone-title {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.9px;
}

.phone-plus {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--violet));
  box-shadow: 0 8px 18px rgba(98, 75, 255, 0.25);
  font-size: 21px;
  font-weight: 400;
  place-items: center;
}

.phone-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 13px 4px 7px;
  color: #666b7f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-section-label em {
  color: var(--violet);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0;
}

.current-trip {
  position: relative;
  min-height: 184px;
  overflow: hidden;
  padding: 18px;
  border-radius: 26px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(20, 19, 57, 0.02), rgba(13, 20, 53, 0.62)),
    radial-gradient(circle at 80% 10%, #ffcf7d, transparent 30%),
    linear-gradient(135deg, #ef7c6b 0%, #b95c9e 48%, #404a9d 100%);
  box-shadow: 0 16px 31px rgba(66, 49, 129, 0.23);
}

.current-trip::before,
.current-trip::after {
  position: absolute;
  content: "";
}

.current-trip::before {
  right: -18px;
  bottom: -26px;
  width: 175px;
  height: 100px;
  border: 24px solid rgba(255, 255, 255, 0.16);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-11deg);
}

.current-trip::after {
  right: 32px;
  bottom: 39px;
  width: 58px;
  height: 74px;
  border: solid rgba(19, 27, 66, 0.28);
  border-width: 0 7px 0 0;
  border-radius: 50%;
  transform: rotate(24deg);
}

.trip-status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(13, 18, 48, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.trip-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a1ffe6;
  box-shadow: 0 0 0 4px rgba(161, 255, 230, 0.18);
}

.current-trip h3 {
  position: relative;
  z-index: 1;
  margin: 37px 0 0;
  color: var(--white);
  font-size: 25px;
  line-height: 1;
  letter-spacing: -1px;
}

.current-trip p {
  position: relative;
  z-index: 1;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 9px;
  font-weight: 650;
}

.trip-progress {
  position: relative;
  z-index: 1;
  height: 4px;
  margin-top: 15px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.25);
}

.trip-progress span {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: var(--white);
}

.mini-trips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mini-trip {
  min-height: 83px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 20px rgba(44, 38, 89, 0.08);
}

.mini-trip span {
  color: var(--violet);
  font-size: 7px;
  font-weight: 850;
  text-transform: uppercase;
}

.mini-trip strong {
  display: block;
  margin-top: 9px;
  color: var(--ink);
  font-size: 12px;
}

.mini-trip small {
  display: block;
  color: #777b8f;
  font-size: 7px;
}

.phone-nav {
  position: absolute;
  right: 13px;
  bottom: 12px;
  left: 13px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 47px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(31, 29, 67, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.phone-nav span {
  display: grid;
  color: #9699a8;
  font-size: 7px;
  font-weight: 700;
  place-items: center;
}

.phone-nav span::before {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 5px;
  content: "";
}

.phone-nav .active {
  color: var(--violet);
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -25px;
}

.trust-shell {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 44px rgba(45, 36, 90, 0.07);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.trust-lead {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #666b80;
  font-size: 12px;
  font-weight: 700;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--violet);
}

.section {
  padding: 112px 0;
}

.section-compact {
  padding: 78px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 17px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.048em;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 258px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.67);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.feature-card.large {
  grid-column: span 7;
}

.feature-card.medium {
  grid-column: span 5;
}

.feature-card.third {
  grid-column: span 4;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.6px;
}

.feature-card > p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  border-radius: 16px;
  color: var(--violet);
  background: linear-gradient(145deg, rgba(255, 107, 138, 0.14), rgba(98, 75, 255, 0.14));
  place-items: center;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.feature-card.accent {
  color: var(--white);
  background:
    radial-gradient(circle at 87% 8%, rgba(255, 208, 129, 0.34), transparent 180px),
    linear-gradient(135deg, #172b5c, #3d55b3 56%, #8f68d8);
}

.feature-card.accent h3,
.feature-card.accent p {
  color: var(--white);
}

.feature-card.accent p {
  opacity: 0.75;
}

.feature-card.accent .feature-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.card-number {
  position: absolute;
  right: 25px;
  bottom: -22px;
  color: rgba(98, 75, 255, 0.07);
  font-size: 112px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -10px;
}

.accent .card-number {
  color: rgba(255, 255, 255, 0.07);
}

.experience-section {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.43);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.74), inset 0 -1px rgba(255, 255, 255, 0.74);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.split-copy h2 {
  max-width: 570px;
}

.split-copy > p {
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #555b73;
  font-size: 15px;
}

.check-list svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: var(--mint);
}

.timeline-panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(248, 246, 255, 0.94), rgba(255, 247, 241, 0.92));
  box-shadow: var(--shadow);
}

.timeline-panel::before {
  position: absolute;
  inset: 20px auto 20px 76px;
  width: 2px;
  border-radius: 99px;
  background: linear-gradient(var(--peach), var(--coral), var(--violet));
  content: "";
  opacity: 0.42;
}

.timeline-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-left: 4px;
}

.timeline-top strong {
  font-size: 18px;
}

.timeline-top span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #5a47d4;
  background: rgba(98, 75, 255, 0.1);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 10px 0;
}

.timeline-time {
  padding-top: 16px;
  color: #777c90;
  font-size: 12px;
  font-weight: 750;
}

.timeline-dot {
  position: absolute;
  top: 31px;
  left: 70px;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 3px solid #f9f6fa;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 3px rgba(98, 75, 255, 0.15);
}

.timeline-card {
  margin-left: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.73);
  box-shadow: 0 8px 21px rgba(38, 33, 79, 0.07);
}

.timeline-card small {
  display: block;
  margin-bottom: 3px;
  color: var(--coral);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.timeline-card strong {
  display: block;
  font-size: 14px;
}

.timeline-card span {
  color: #787d90;
  font-size: 11px;
}

.collaboration-card {
  position: relative;
  overflow: hidden;
  padding: 54px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 0 100%, rgba(255, 107, 138, 0.42), transparent 380px),
    radial-gradient(circle at 100% 0, rgba(255, 179, 71, 0.26), transparent 330px),
    linear-gradient(135deg, #111a3a, #333d91 60%, #704fc5);
  box-shadow: 0 34px 80px rgba(31, 28, 83, 0.24);
}

.collaboration-card::after {
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.collaboration-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: 72px;
}

.collaboration-copy h2,
.collaboration-copy p {
  color: var(--white);
}

.collaboration-copy p {
  opacity: 0.72;
  font-size: 18px;
}

.collaboration-copy .section-kicker {
  color: #ffb1c1;
}

.chat-window {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 55px rgba(10, 12, 35, 0.25);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.chat-head strong {
  font-size: 15px;
}

.avatars {
  display: flex;
}

.avatar {
  display: grid;
  width: 30px;
  height: 30px;
  margin-left: -7px;
  border: 2px solid #4851a1;
  border-radius: 50%;
  color: var(--ink);
  background: #ffd0b1;
  font-size: 9px;
  font-weight: 850;
  place-items: center;
}

.avatar:nth-child(2) { background: #c8bcff; }
.avatar:nth-child(3) { background: #b6efe5; }

.message {
  width: fit-content;
  max-width: 82%;
  margin-bottom: 10px;
  padding: 11px 14px;
  border-radius: 16px 16px 16px 5px;
  color: #e9eaf5;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.message.mine {
  margin-left: auto;
  border-radius: 16px 16px 5px;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #a955c9);
}

.chat-compose {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 8px 8px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(5, 10, 39, 0.2);
  font-size: 11px;
}

.chat-send {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: auto;
  border-radius: 11px;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--violet));
  place-items: center;
}

.chat-send svg {
  width: 15px;
  height: 15px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  padding: 27px 24px;
  border-top: 1px solid var(--line);
}

.step-card span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 12px;
  color: var(--violet);
  background: rgba(98, 75, 255, 0.1);
  font-size: 12px;
  font-weight: 850;
  place-items: center;
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 48px;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.privacy-panel h2 {
  font-size: clamp(34px, 4.4vw, 52px);
}

.privacy-panel p {
  color: var(--muted);
}

.privacy-points {
  display: grid;
  gap: 13px;
}

.privacy-point {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(53, 56, 94, 0.07);
  border-radius: 17px;
  background: rgba(255, 250, 247, 0.75);
}

.privacy-point svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  color: var(--mint);
}

.privacy-point strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

.privacy-point span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  max-width: 860px;
  margin-inline: auto;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.61);
  box-shadow: 0 9px 24px rgba(36, 31, 78, 0.05);
}

.faq-item summary {
  position: relative;
  padding: 21px 58px 21px 22px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  color: var(--violet);
  background: rgba(98, 75, 255, 0.09);
  content: "+";
  transform: translateY(-50%);
  place-items: center;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: -4px 58px 22px 22px;
  color: var(--muted);
  font-size: 14px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 72px 40px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 115%, rgba(255, 179, 71, 0.65), transparent 290px),
    radial-gradient(circle at 90% -10%, rgba(255, 107, 138, 0.54), transparent 310px),
    linear-gradient(135deg, #262a72, #5942b8 58%, #9c55bd);
  box-shadow: 0 34px 80px rgba(43, 33, 112, 0.25);
  text-align: center;
}

.cta-card::before,
.cta-card::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.cta-card::before {
  top: -170px;
  left: -120px;
  width: 430px;
  height: 430px;
}

.cta-card::after {
  right: -90px;
  bottom: -220px;
  width: 480px;
  height: 480px;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  max-width: 760px;
  margin-inline: auto;
  color: var(--white);
}

.cta-card p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.cta-card .button-secondary {
  color: #3c3286;
  background: var(--white);
}

.site-footer {
  padding: 58px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.footer-brand img {
  width: 190px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 380px;
  color: var(--muted);
  font-size: 14px;
}

.footer-column strong {
  display: block;
  margin-bottom: 13px;
  font-size: 13px;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 7px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--violet);
}

.footer-column a:has(.footer-beta) {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  color: #85899a;
  font-size: 12px;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(0, 191, 169, 0.11);
  content: "";
}

.legal-main {
  padding: 150px 0 88px;
}

.legal-hero {
  max-width: 820px;
  margin-bottom: 38px;
}

.legal-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(43px, 6vw, 68px);
}

.legal-hero p {
  color: var(--muted);
  font-size: 18px;
}

.legal-card {
  max-width: 920px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin: 46px 0 13px;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin: 28px 0 9px;
  font-size: 17px;
}

.legal-card p,
.legal-card li {
  color: #5f6579;
  font-size: 15px;
}

.legal-card a {
  color: var(--violet);
  font-weight: 700;
}

.legal-card ul {
  padding-left: 22px;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-meta {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #6250c8;
  background: rgba(98, 75, 255, 0.09);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.support-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
}

.support-contact,
.support-faq {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.support-contact h2,
.support-faq h2 {
  font-size: 27px;
}

.support-contact p,
.support-faq p {
  color: var(--muted);
  font-size: 14px;
}

.support-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.support-list a,
.support-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-radius: 14px;
  background: rgba(98, 75, 255, 0.07);
  font-size: 13px;
  font-weight: 700;
}

.support-list svg {
  width: 19px;
  height: 19px;
  color: var(--violet);
}

.support-question + .support-question {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.support-question h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.store-hero {
  padding: 150px 0 84px;
}

.store-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

.store-copy h1 {
  max-width: 650px;
  margin: 22px 0 24px;
  font-size: clamp(48px, 6.4vw, 78px);
  line-height: 0.99;
}

.store-copy > p:not(.store-note) {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
}

.store-beta-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 107, 138, 0.18);
  border-radius: 999px;
  color: #9a3768;
  background: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-beta-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 107, 138, 0.12);
}

.store-actions {
  margin-top: 30px;
}

.store-note {
  max-width: 520px;
  margin: 17px 0 0;
  color: #898c9d;
  font-size: 12px;
}

.store-showcase {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 38px;
  background: #d8c8b7;
  box-shadow: 0 34px 82px rgba(36, 29, 67, 0.2);
}

.store-showcase::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to top, rgba(10, 14, 34, 0.72), transparent);
  content: "";
  pointer-events: none;
}

.store-showcase img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.store-showcase figcaption {
  position: absolute;
  right: 26px;
  bottom: 23px;
  left: 26px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
}

.store-showcase figcaption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-showcase figcaption strong {
  max-width: 250px;
  font-size: 17px;
  line-height: 1.25;
  text-align: right;
}

.store-preview {
  padding: 80px 0 108px;
}

.store-heading {
  margin-bottom: 42px;
}

.store-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.store-pillar {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.store-pillar-number {
  display: inline-flex;
  margin-bottom: 44px;
  color: #7a68e2;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.store-pillar h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.store-pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.store-final {
  padding-top: 0;
}

@media (max-width: 1060px) {
  .menu-button {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 5px);
    right: 20px;
    left: 20px;
    display: none;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 22px;
    background: rgba(255, 252, 249, 0.94);
    box-shadow: 0 24px 54px rgba(32, 27, 71, 0.16);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav > a:not(.button) {
    padding: 12px;
  }

  .site-nav .button {
    margin-top: 5px;
  }
}

.error-page {
  display: grid;
  min-height: 100vh;
  padding: 100px 20px;
  text-align: center;
  place-items: center;
}

.error-card {
  max-width: 620px;
}

.error-mark {
  width: 130px;
  margin: 0 auto 28px;
}

.error-card h1 {
  margin-bottom: 15px;
}

.error-card p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 18px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .collaboration-grid,
  .privacy-panel,
  .store-hero-grid {
    grid-template-columns: 1fr;
  }

  .store-showcase {
    max-width: 760px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .phone-stage {
    max-width: 620px;
    margin-inline: auto;
  }

  .trust-shell {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-lead {
    grid-column: 1 / -1;
  }

  .feature-card.large,
  .feature-card.medium {
    grid-column: span 6;
  }

  .feature-card.third {
    grid-column: span 6;
  }

  .split-grid {
    gap: 52px;
  }

  .collaboration-grid {
    gap: 46px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-panel {
    gap: 26px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .store-pillars {
    grid-template-columns: 1fr;
  }

  .store-pillar {
    min-height: auto;
  }

  .store-pillar-number {
    margin-bottom: 26px;
  }
}

@media (max-width: 780px) {
  .site-header {
    padding: 12px 0;
  }

  .brand img {
    width: 176px;
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 5px);
    right: 20px;
    left: 20px;
    display: none;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 22px;
    background: rgba(255, 252, 249, 0.94);
    box-shadow: 0 24px 54px rgba(32, 27, 71, 0.16);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav > a:not(.button) {
    padding: 12px;
  }

  .site-nav .button {
    margin-top: 5px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(45px, 12vw, 64px);
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .phone-stage {
    min-height: 620px;
  }

  .trust-shell {
    grid-template-columns: 1fr;
  }

  .trust-lead {
    grid-column: auto;
  }

  .section {
    padding: 84px 0;
  }

  .feature-card.large,
  .feature-card.medium,
  .feature-card.third {
    grid-column: 1 / -1;
  }

  .feature-card {
    min-height: 230px;
  }

  .collaboration-card,
  .privacy-panel {
    padding: 32px 24px;
    border-radius: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .brand img {
    width: 160px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 74px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .phone-stage {
    min-height: 575px;
    transform: scale(0.91);
    transform-origin: center top;
  }

  .phone-stage::after {
    width: 380px;
    height: 380px;
  }

  .orbit-weather {
    right: -18px;
  }

  .orbit-team {
    left: -16px;
  }

  .trust-strip {
    margin-top: -68px;
  }

  .timeline-panel {
    padding: 22px 14px;
    border-radius: 28px;
  }

  .timeline-panel::before {
    left: 61px;
  }

  .timeline-row {
    grid-template-columns: 47px 1fr;
    gap: 12px;
  }

  .timeline-dot {
    left: 54px;
  }

  .timeline-card {
    margin-left: 7px;
  }

  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .cta-card {
    padding: 54px 22px;
    border-radius: 30px;
  }

  .legal-main {
    padding-top: 124px;
  }

  .store-hero {
    padding: 124px 0 62px;
  }

  .store-copy h1 {
    font-size: 46px;
  }

  .store-actions .button {
    width: 100%;
  }

  .store-showcase {
    border-radius: 26px;
  }

  .store-showcase figcaption {
    right: 18px;
    bottom: 17px;
    left: 18px;
  }

  .store-preview {
    padding: 62px 0 84px;
  }

  .legal-card {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
