:root {
  --bg: #06090b;
  --surface: rgba(11, 16, 20, 0.92);
  --ink: #f4f7f8;
  --muted: #9aa8ae;
  --line: rgba(95, 123, 132, 0.2);
  --line-strong: rgba(105, 148, 160, 0.34);
  --accent: #22c3cf;
  --accent-strong: #53e0ea;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.22);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1320px;
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(
      circle at 68% 18%,
      rgba(34, 195, 207, 0.18),
      transparent 18%
    ),
    radial-gradient(
      circle at 18% 9%,
      rgba(34, 195, 207, 0.08),
      transparent 16%
    ),
    linear-gradient(180deg, #040607 0%, #071013 45%, #050809 100%);
  padding: 20px 16px 36px;
}

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

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

svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-shell {
  max-width: var(--container);
  margin: 0 auto;
}

.site-header,
.content-section,
.site-footer,
.trust-strip,
.hero {
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(13, 19, 23, 0.92) 0%,
    rgba(7, 10, 12, 0.96) 100%
  );
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header,
.content-section,
.site-footer,
.trust-strip {
  border-radius: var(--radius-xl);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  margin-bottom: 18px;
  background: rgba(7, 11, 14, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(34, 195, 207, 0.18));
}

.top-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.top-nav a {
  padding: 10px 14px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.94rem;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

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

.header-actions {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #1db7c7 0%, #33d2c5 100%);
  color: #041012;
  box-shadow: 0 18px 34px rgba(34, 195, 207, 0.18);
}

.button-secondary {
  background: rgba(8, 14, 18, 0.7);
  border-color: var(--line-strong);
  color: var(--ink);
}

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

.icon-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.button .icon svg,
.trust-icon svg,
.audience-icon svg,
.benefit-icon svg,
.feature-badge svg,
.companion-link .icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.store-button {
  border-radius: 18px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: 36px;
  padding: 44px 42px 32px;
  border-radius: 38px;
  overflow: hidden;
  margin-bottom: 18px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 22% 12%,
      rgba(34, 195, 207, 0.12),
      transparent 18%
    ),
    radial-gradient(
      circle at 82% 34%,
      rgba(34, 195, 207, 0.18),
      transparent 24%
    );
  pointer-events: none;
}

.hero-copy,
.hero-showcase {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(34, 195, 207, 0.5);
  border-radius: 999px;
  background: rgba(4, 14, 18, 0.78);
  box-shadow: inset 0 0 0 1px rgba(11, 28, 35, 0.5);
}

.hero h1,
.section-heading h1,
.section-heading h2,
.audience-card h3,
.showcase-card h3,
.pricing-card h3,
.benefit-card h3,
.faq-item summary,
.final-cta h2 {
  margin: 0;
}

.hero h1 {
  max-width: 8.4ch;
  font-size: clamp(3.6rem, 7.2vw, 6.1rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-accent {
  color: var(--accent-strong);
}

.hero-text,
.section-heading p,
.showcase-card p,
.audience-card p,
.companion-copy p,
.pricing-card p,
.benefit-card p,
.faq-item p,
.final-cta p,
.site-footer p,
.legal-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 34rem;
  margin: 20px 0 0;
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: -10px;
  border: 2px solid rgba(5, 9, 11, 0.9);
  border-radius: 50%;
  background: linear-gradient(135deg, #4a5960 0%, #1f2c31 100%);
  color: #f5f7f8;
  font-size: 0.92rem;
  font-weight: 700;
}

.avatar-pill:first-child {
  margin-left: 0;
}

.rating-stars {
  color: #ffcc54;
  font-size: 1.24rem;
  letter-spacing: 0.18em;
}

.social-proof-copy p {
  margin: 6px 0 0;
  color: var(--muted);
}

.hero-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
}

.glow-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(34, 195, 207, 0.38) 0%,
    rgba(34, 195, 207, 0.1) 42%,
    transparent 70%
  );
  filter: blur(28px);
}

.phone-stage {
  position: relative;
  left: 125px;
  transform: rotate(7deg);
}

.phone-hardware {
  width: min(100%, 360px);
  padding: 14px 12px 16px;
  border-radius: 40px;
  background: linear-gradient(180deg, #1b1e22 0%, #060708 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.phone-speaker {
  width: 86px;
  height: 10px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.phone-hardware img {
  width: 100%;
  border-radius: 30px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 18px;
  overflow: hidden;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon,
.audience-icon,
.benefit-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(34, 195, 207, 0.1);
  color: var(--accent-strong);
  box-shadow: inset 0 0 0 1px rgba(34, 195, 207, 0.14);
}

.trust-item strong,
.audience-card h3,
.showcase-card h3,
.pricing-card h3,
.benefit-card h3 {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

.trust-item p,
.audience-card p,
.benefit-card p {
  margin: 6px 0 0;
}

.content-section {
  padding: 28px;
  margin-bottom: 18px;
}

.section-heading {
  max-width: 54rem;
  margin-bottom: 24px;
}

.section-heading h2,
.section-heading h1,
.companion-copy h2,
.final-cta h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-heading p {
  margin: 14px auto 0;
  font-size: 1.08rem;
}

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

.showcase-section {
  padding-top: 34px;
}

.feature-grid-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 17, 0.94) 0%,
    rgba(6, 9, 11, 0.98) 100%
  );
  box-shadow: var(--shadow-soft);
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(34, 195, 207, 0.24) 0%,
    rgba(34, 195, 207, 0.08) 100%
  );
  color: var(--accent-strong);
  font-size: 1.12rem;
  font-weight: 700;
}

.feature-badge svg {
  width: 22px;
  height: 22px;
}

.trust-icon svg,
.audience-icon svg,
.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.showcase-copy p {
  margin: 10px 0 0;
}

.device-shot {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #15181a 0%, #060708 100%);
}

.device-shot img {
  border-radius: 18px;
  width: 100%;
}

.compact-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.audience-card,
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 13, 16, 0.72);
}

.companion-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.companion-visuals {
  position: relative;
  min-height: 420px;
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 30% 10%,
      rgba(34, 195, 207, 0.1),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      rgba(12, 18, 22, 0.94) 0%,
      rgba(5, 9, 11, 0.98) 100%
    );
  border: 1px solid var(--line);
  overflow: hidden;
}

.laptop-frame {
  position: relative;
  width: min(100%, 620px);
  padding-bottom: 28px;
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.34));
}

.laptop-lid {
  position: relative;
  left: 2%;
  padding: 18px 18px 16px;
  border-radius: 28px 28px 18px 18px;
  background: linear-gradient(
    180deg,
    rgba(27, 35, 42, 0.96) 0%,
    rgba(9, 13, 16, 1) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28),
    0 18px 34px rgba(0, 0, 0, 0.2);
}

.laptop-lid::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 44%;
  border-radius: 27px 27px 0 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.laptop-camera {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 60px;
  height: 11px;
  border-radius: 0 0 10px 10px;
  background: rgba(4, 7, 9, 0.92);
  transform: translateX(-50%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.laptop-camera::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(109, 200, 217, 0.7);
  transform: translateX(-50%);
  box-shadow: 0 0 0 2px rgba(17, 24, 29, 0.8);
}

.laptop-screen {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050708;
  aspect-ratio: 16 / 10;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(0, 0, 0, 0.22);
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laptop-hinge {
  width: 28%;
  height: 8px;
  margin: -1px auto 0;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg, #3b454d 0%, #1b2329 100%);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

.laptop-base {
  position: relative;
  left: 4%;
  width: 112%;
  height: 28px;
  margin: -2px auto 0;
  border-radius: 0 0 42px 42px;
  background: linear-gradient(180deg, #4a5760 0%, #232d34 26%, #151c21 100%);
  transform: translateX(-5.7%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 22px rgba(0, 0, 0, 0.2);
}

.laptop-base::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 16%;
  height: 3px;
  border-radius: 999px;
  background: rgba(10, 14, 17, 0.52);
  transform: translateX(-50%);
}

.laptop-trackpad {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 24%;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(209, 220, 226, 0.28) 0%,
    rgba(98, 112, 120, 0.18) 100%
  );
  transform: translateX(-50%);
}

.floating-phone {
  position: absolute;
  right: 24px;
  bottom: 10px;
  width: min(28vw, 160px);
  padding: 8px;
  border-radius: 24px;
  background: linear-gradient(180deg, #14181c 0%, #050708 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.floating-phone img {
  border-radius: 18px;
  width: 100%;
}

.companion-copy p {
  margin: 14px 0 0;
  font-size: 1.08rem;
}

.companion-link {
  margin-top: 26px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 17, 0.94) 0%,
    rgba(6, 9, 11, 0.98) 100%
  );
}

.pricing-card-featured {
  border-color: rgba(34, 195, 207, 0.46);
  box-shadow: inset 0 0 0 1px rgba(34, 195, 207, 0.12);
}

.pricing-card-head p,
.pricing-meta span {
  margin: 8px 0 0;
  color: var(--muted);
}

.pricing-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pricing-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(34, 195, 207, 0.15);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
}

.pricing-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
  color: var(--ink);
}

.pricing-list li {
  position: relative;
  padding-left: 26px;
}

.pricing-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.pricing-value,
.pricing-price {
  display: block;
  color: var(--accent-strong);
  font-size: 1.55rem;
  font-weight: 700;
}

.pricing-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-benefits {
  display: grid;
  gap: 14px;
}

.pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.faq-section {
  padding-top: 32px;
}

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

.faq-item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 13, 16, 0.72);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 700;
}

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

.faq-item[open] {
  border-color: var(--line-strong);
}

.faq-item p {
  margin: 12px 0 0;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.final-cta-copy p {
  margin: 12px 0 0;
  max-width: 46rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 24px 28px;
}

.footer-brand p {
  margin: 12px 0 0;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-columns h3 {
  margin: 0 0 14px;
  font-size: 0.92rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-columns a,
.footer-links a {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
}

.footer-links a {
  margin: 0;
}

.footer-columns a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.footer-attribution {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-attribution a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.footer-attribution a:hover,
.footer-attribution a:focus-visible {
  color: var(--ink);
}

.legal-hero {
  display: grid;
  gap: 16px;
}

.legal-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(8, 13, 16, 0.72);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.legal-stack {
  display: grid;
  gap: 12px;
}

.legal-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 13, 16, 0.72);
}

.legal-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.legal-card p {
  margin: 0;
}

.legal-card p + p {
  margin-top: 12px;
}

@media (max-width: 1180px) {
  .hero,
  .companion-section,
  .pricing-layout,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-grid-showcase,
  .audience-grid,
  .trust-strip,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item + .trust-item {
    border-left: 0;
  }

  .trust-item {
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(-n + 2) {
    border-top: 0;
  }

  .hero-showcase {
    min-height: 480px;
  }

  .final-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 920px) {
  body {
    padding: 14px 10px 28px;
  }

  .site-header {
    position: static;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .header-actions,
  .top-nav {
    justify-self: center;
  }

  .hero,
  .content-section,
  .site-footer,
  .trust-strip {
    border-radius: 24px;
  }

  .hero {
    padding: 26px 20px;
  }

  .content-section,
  .site-footer {
    padding: 20px;
  }

  .feature-grid-showcase,
  .audience-grid,
  .pricing-plans,
  .footer-columns,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-top: 1px solid var(--line);
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .hero h1,
  .section-heading h1,
  .section-heading h2,
  .companion-copy h2,
  .final-cta h2 {
    max-width: none;
    font-size: clamp(2.6rem, 9vw, 4.4rem);
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .button,
  .hero-actions .button,
  .final-cta-actions .button,
  .header-actions .button {
    width: 100%;
  }

  .hero-showcase {
    min-height: 400px;
  }

  .phone-stage {
    transform: none;
  }

  .social-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-phone {
    position: static;
    width: 160px;
    margin-top: 16px;
  }
}
