:root {
  --ink: #0a0a0a;
  --muted: #4a5565;
  --soft: #6a7282;
  --purple-900: #2d1b4e;
  --purple-700: #51447d;
  --purple-500: #8b7ab8;
  --purple-300: #e8e4f3;
  --blue-700: #3b4d7d;
  --line: #e5e7eb;
  --footer: #091426;
  --page-width: 1564px;
  --content: 1280px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  overflow-x: hidden;
}

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

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

.site-header,
main,
.footer {
  width: 100%;
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 80px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
}

.nav-shell {
  width: min(100% - 280px, var(--content));
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.12px;
  color: var(--purple-700);
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-500), var(--blue-700));
}

.brand-mark img {
  width: 17px;
  height: 17px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 12px;
  font-weight: 700;
}

.nav-links a {
  color: #111827;
}

.nav-links .active {
  color: var(--purple-500);
}

.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(153deg, #e8e4f3 0%, #ece9f5 14%, #f1f1f8 36%, #f7f8fb 64%, #fff 100%);
}

.orb {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(120px);
}

.orb-left {
  left: 40px;
  top: 80px;
  background: var(--purple-500);
}

.orb-right {
  right: 40px;
  bottom: 80px;
  background: #ff9a56;
}

.hero-inner {
  position: relative;
  width: min(1024px, calc(100% - 48px));
  min-height: 579px;
  padding-top: 0;
  text-align: center;
}

.eyebrow,
.feature-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 122, 184, 0.2);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.eyebrow {
  height: 38px;
  gap: 12px;
  padding: 0 16px;
  margin: 0 auto 31px;
  font-size: 14px;
  letter-spacing: -0.15px;
}

.eyebrow img,
.feature-pills img,
.button img {
  width: 16px;
  height: 16px;
}

.hero h1 {
  margin: 0;
  font-size: 72px;
  line-height: 90px;
  font-weight: 800;
  letter-spacing: 0.12px;
  background: linear-gradient(90deg, #2d1b4e 0%, #3b4d7d 50%, #8b7ab8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-kicker {
  margin: 56px 0 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 39px;
}

.hero-copy {
  width: min(672px, 100%);
  margin: 32px auto 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.44px;
}

.feature-pills {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.feature-pills span {
  height: 38px;
  gap: 12px;
  padding: 0 17px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 20px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.mobile-break {
  display: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: -0.44px;
}

.button.primary {
  color: #fff;
  background: linear-gradient(90deg, #8b7ab8 0%, #3b4d7d 100%);
}

.button.secondary {
  min-height: 52px;
  border: 2px solid var(--purple-500);
  background: #fff;
}

.section {
  padding: 96px 142px;
}

.section-heading {
  text-align: center;
  margin: 0 auto 64px;
}

.section-heading h2,
.hardware-copy h2,
.cta-section h2 {
  margin: 0;
  font-size: 48px;
  line-height: 48px;
  font-weight: 800;
  letter-spacing: 0.35px;
  background: linear-gradient(90deg, #2d1b4e 0%, #594981 50%, #8b7ab8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading p {
  width: min(672px, 100%);
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.44px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  min-height: 238px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(150deg, #fff 0%, #fafafd 50%, #f5f6fa 100%);
}

.feature-icon,
.hardware-list span,
.steps span {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple-500), var(--blue-700));
  box-shadow: 0 10px 22px rgba(59, 77, 125, 0.28);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.feature-icon img {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: -0.45px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.31px;
}

.hardware-section,
.steps-section {
  padding: 96px 142px;
  background: linear-gradient(135deg, #e8e4f3 0%, #f5f2fb 55%, #fff 100%);
}

.hardware-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hardware-copy h2 {
  text-align: left;
}

.hardware-copy > p {
  margin: 32px 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.31px;
}

.hardware-list {
  display: grid;
  gap: 16px;
}

.hardware-list div {
  min-height: 64px;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
}

.hardware-list span {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
}

.hardware-list span img {
  width: 20px;
  height: 20px;
}

.hardware-list strong {
  font-size: 15px;
  line-height: 20px;
}

.hardware-list small {
  color: var(--muted);
  font-size: 13px;
  line-height: 18px;
}

.hardware-image {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(45, 27, 78, 0.18);
}

.hardware-image img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.moments-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.moment-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 16px;
  background: #111827;
}

.moment-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.moment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(9, 20, 38, 0.72) 100%);
}

.moment-card div {
  position: absolute;
  z-index: 1;
  left: 32px;
  right: 32px;
  bottom: 28px;
  color: #fff;
}

.moment-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 28px;
}

.moment-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.steps-section {
  padding-bottom: 104px;
}

.steps {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  text-align: center;
}

.steps li {
  position: relative;
}

.steps li + li::before {
  content: "›";
  position: absolute;
  left: -20px;
  top: 34px;
  color: var(--purple-500);
  font-size: 26px;
}

.steps span {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  border-radius: 50%;
}

.steps span img {
  width: 32px;
  height: 32px;
}

.steps b {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin: 0 auto 6px;
  border-radius: 50%;
  color: #fff;
  background: var(--purple-500);
  font-size: 10px;
}

.steps p {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: #111827;
}

.cta-section {
  min-height: 420px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  background: linear-gradient(100deg, #2d174f 0%, #3b4d7d 49%, #8b7ab8 100%);
}

.cta-section h2 {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.cta-section p {
  width: min(520px, 100% - 48px);
  margin: 24px auto 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 24px;
}

.cta-button {
  min-height: 44px;
  padding: 0 22px;
  background: #fff;
  color: var(--purple-700);
  font-size: 14px;
  letter-spacing: 0;
}

.subpage-hero {
  position: relative;
  min-height: 562px;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}

.plus-hero {
  color: #fff;
  background: linear-gradient(160deg, #2d1b4e 0%, #3b4d7d 50%, #8b7ab8 100%);
}

.subpage-hero-inner {
  position: relative;
  width: min(896px, calc(100% - 48px));
  margin-top: 18px;
}

.subpage-hero .eyebrow.dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.subpage-hero h1,
.support-hero h1 {
  margin: 30px 0 0;
  font-size: 60px;
  line-height: 60px;
  font-weight: 800;
  letter-spacing: 0.26px;
}

.subpage-kicker {
  margin: 24px 0 0;
  font-size: 24px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.9);
}

.subpage-hero p:not(.subpage-kicker) {
  width: min(672px, 100%);
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 28px;
}

.plus-included {
  padding-top: 96px;
  padding-bottom: 96px;
}

.plus-card-grid {
  width: min(var(--content), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.plus-feature-card {
  min-height: 446px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #e8e4f3 0%, #f5f6fa 65%, #fff 100%);
}

.plus-feature-card h3 {
  margin: 24px 0 22px;
  font-size: 24px;
  line-height: 32px;
}

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

.check-list li {
  position: relative;
  padding-left: 36px;
  color: #364153;
  font-size: 16px;
  line-height: 24px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--purple-500), var(--blue-700));
  font-size: 13px;
  font-weight: 800;
}

.privacy-section {
  padding: 64px 24px;
  background: linear-gradient(135deg, #e8e4f3 0%, #f5f6fa 100%);
}

.privacy-card {
  width: min(896px, 100%);
  min-height: 280px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 32px 112px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.privacy-card h2 {
  margin: 24px 0 14px;
  font-size: 24px;
  line-height: 32px;
}

.privacy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
}

.comparison-section {
  padding-top: 96px;
  padding-bottom: 120px;
}

.comparison-table-wrap {
  width: min(1024px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  height: 73px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison-table th {
  height: 72px;
  background: linear-gradient(90deg, #e8e4f3 0%, #f5f6fa 100%);
  font-weight: 700;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3),
.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
  width: 18%;
  text-align: center;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table .yes {
  color: var(--purple-500);
  font-size: 24px;
}

.comparison-table .no {
  color: #d1d5dc;
  font-size: 24px;
}

.plus-label::before {
  content: "♕";
  color: #ff9a56;
  margin-right: 8px;
}

.support-hero {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 80px 24px 72px;
  background: linear-gradient(170deg, #e8e4f3 0%, #f5f6fa 100%);
  text-align: center;
}

.support-hero .section-heading {
  margin-bottom: 0;
}

.support-hero h1 {
  margin: 0;
  background: linear-gradient(90deg, #2d1b4e 0%, #8b7ab8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.support-faq {
  padding: 64px 24px;
  background: #fff;
}

.faq-shell {
  width: min(896px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 48px;
}

.faq-group h2 {
  margin: 0 0 24px;
  color: var(--purple-900);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.faq-group details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(176deg, #fff 0%, #fafafd 48%, #f5f6fa 100%);
}

.faq-group details + details {
  margin-top: 16px;
}

.faq-group summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  list-style: none;
}

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

.faq-group summary::after {
  content: "⌄";
  color: #697282;
  font-size: 16px;
}

.faq-group details[open] summary::after {
  transform: rotate(180deg);
}

.faq-group details p {
  margin: -6px 24px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.support-contact {
  padding: 64px 24px 96px;
  background: linear-gradient(162deg, #e8e4f3 0%, #f5f6fa 100%);
}

.contact-card-grid {
  width: min(896px, 100%);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-card {
  min-height: 238px;
  display: block;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.contact-card h3 {
  margin: 24px 0 8px;
  font-size: 20px;
  line-height: 28px;
}

.contact-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.contact-card span {
  color: var(--purple-500);
  font-size: 16px;
  line-height: 24px;
}

.footer {
  background: linear-gradient(180deg, #081324 0%, #142541 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 142px 40px;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 72px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  color: #fff;
  margin-bottom: 18px;
}

.footer p,
.footer a {
  display: block;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
}

.copyright {
  padding-top: 32px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1100px) {
  .nav-shell,
  .section,
  .hardware-section,
  .steps-section,
  .footer {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav-shell {
    padding-left: 0;
    padding-right: 0;
    width: calc(100% - 80px);
  }

  .hero h1 {
    font-size: 56px;
    line-height: 68px;
  }

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

@media (max-width: 760px) {
  .site-header {
    height: 68px;
  }

  .nav-shell {
    width: calc(100% - 32px);
    height: 68px;
  }

  .nav-links {
    gap: 14px;
    font-size: 11px;
  }

  .hero {
    min-height: 760px;
    padding: 80px 0 72px;
  }

  .hero-inner {
    width: calc(100% - 32px);
  }

  .hero h1 {
    font-size: 34px;
    line-height: 41px;
  }

  .hero-kicker {
    margin-top: 36px;
    font-size: 20px;
  }

  .hero-copy {
    max-width: 326px;
    font-size: 16px;
    line-height: 26px;
  }

  .hero-actions,
  .feature-pills {
    align-items: center;
    flex-direction: column;
  }

  .button {
    width: 100%;
    max-width: 280px;
  }

  .section,
  .hardware-section,
  .steps-section,
  .footer {
    padding: 72px 20px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .hardware-copy h2,
  .subpage-hero h1,
  .support-hero h1,
  .cta-section h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .section-heading h2 {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading p {
    max-width: 326px;
    font-size: 16px;
    line-height: 26px;
  }

  .mobile-break {
    display: initial;
  }

  .feature-grid,
  .hardware-shell,
  .moment-grid,
  .plus-card-grid,
  .contact-card-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps li + li::before {
    display: none;
  }

  .subpage-hero {
    min-height: 520px;
    padding: 72px 0;
  }

  .subpage-hero-inner {
    width: calc(100% - 32px);
  }

  .subpage-kicker {
    font-size: 20px;
    line-height: 28px;
  }

  .subpage-hero p:not(.subpage-kicker) {
    font-size: 16px;
    line-height: 26px;
  }

  .plus-included,
  .comparison-section,
  .support-faq,
  .support-contact {
    padding: 72px 20px;
  }

  .plus-feature-card {
    min-height: auto;
    padding: 28px;
  }

  .privacy-card {
    padding: 32px 24px;
  }

  .comparison-table-wrap {
    border-radius: 14px;
  }

  .support-hero {
    min-height: 244px;
    padding: 70px 20px 62px;
  }

  .faq-shell {
    gap: 42px;
  }

  .faq-group summary {
    min-height: 68px;
    align-items: center;
    padding: 0 18px;
  }

  .faq-group details p {
    margin-left: 18px;
    margin-right: 18px;
  }
}
