:root {
  --bg: #fbf6ff;
  --bg-warm: #fff3e8;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --surface-soft: #fff8f3;
  --surface-blue: #edf5ff;
  --ink: #241830;
  --ink-soft: #3b2f4a;
  --muted: #71667d;
  --line: rgba(95, 76, 124, 0.16);
  --line-strong: rgba(95, 76, 124, 0.26);
  --navy: #16213e;
  --navy-2: #24345f;
  --accent: #8f6cff;
  --accent-dark: #6546d7;
  --violet: #9b72ff;
  --sky: #79b8ff;
  --warm: #ffc46b;
  --peach: #ffd5ba;
  --coral: #ff7f72;
  --lavender: #d9ccff;
  --radius-sm: 14px;
  --radius: 18px;
  --radius-lg: 26px;
  --twilight: linear-gradient(135deg, #fff9f2 0%, #f4ecff 46%, #edf6ff 100%);
  --twilight-strong: linear-gradient(135deg, #fff5ea 0%, #eee5ff 48%, #edf7ff 100%);
  --sunset: linear-gradient(135deg, #ffb56b 0%, #ff7f72 42%, #9b72ff 100%);
  --app-gradient: linear-gradient(135deg, #8f6cff 0%, #79b8ff 52%, #ffc46b 100%);
  --shadow-sm: 0 8px 22px rgba(61, 38, 89, 0.08);
  --shadow: 0 18px 46px rgba(61, 38, 89, 0.12);
  --shadow-strong: 0 22px 64px rgba(61, 38, 89, 0.16);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 196, 107, 0.2), transparent 20rem),
    radial-gradient(circle at 88% 12%, rgba(143, 108, 255, 0.13), transparent 24rem),
    radial-gradient(circle at 70% 72%, rgba(121, 184, 255, 0.12), transparent 25rem),
    linear-gradient(180deg, #fff8f1 0%, #f7f1ff 44%, #f2f8ff 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 1px, transparent 1.6px),
    linear-gradient(rgba(95, 76, 124, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 76, 124, 0.04) 1px, transparent 1px);
  background-position: 0 0, 0 0, 0 0;
  background-size: 96px 96px, 44px 44px, 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 34%, rgba(255, 255, 255, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 58%, rgba(255, 255, 255, 0.72) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 76%, rgba(255, 255, 255, 0.65) 0 1px, transparent 2px);
  background-size: 42px 42px;
}

a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent-dark);
}

a:focus-visible {
  outline: 3px solid rgba(255, 127, 114, 0.5);
  outline-offset: 4px;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.9rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.65rem, 3.1vw, 2.55rem);
  font-weight: 900;
}

h3 {
  font-size: 1.15rem;
  font-weight: 900;
}

.site-header,
.site-footer,
.hero,
.section,
.page-main {
  width: min(var(--container), calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 60px;
  margin-top: 14px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 40px rgba(61, 38, 89, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 12px 0 4px;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(143, 108, 255, 0.25);
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: #5c5268;
  font-size: 0.91rem;
  font-weight: 850;
  text-decoration: none;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.eyebrow,
.badge {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  padding: 4px 9px;
  border: 1px solid rgba(143, 108, 255, 0.28);
  border-radius: 999px;
  background: rgba(143, 108, 255, 0.1);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.badge-soft {
  border-color: rgba(255, 127, 114, 0.28);
  background: rgba(255, 127, 114, 0.1);
  color: #b34840;
}

.status {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid rgba(102, 112, 133, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #7a4b0d;
  font-size: 0.76rem;
  font-weight: 900;
}

.status-live {
  border-color: rgba(143, 108, 255, 0.34);
  background: rgba(143, 108, 255, 0.12);
  color: #4b2fc0;
}

.button,
.card-link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(61, 38, 89, 0.16);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.card-link:hover {
  background: #2a2051;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(61, 38, 89, 0.2);
}

.button:focus-visible,
.card-link:focus-visible,
.link-grid a:focus-visible,
.email-card:focus-visible,
nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(255, 127, 114, 0.5);
  outline-offset: 4px;
}

.button-primary {
  background: var(--sunset);
  color: #ffffff;
}

.button-primary:hover {
  background: linear-gradient(135deg, #ff9d68, #ff716b 42%, #8062ff 100%);
  color: #ffffff;
}

.button-secondary {
  border-color: rgba(143, 108, 255, 0.24);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.button-secondary:hover {
  background: #ffffff;
  color: var(--ink);
}

.button-light {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.button-light:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: 28px;
  padding: 34px 0 46px;
}

.hero-content {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4.2vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 196, 107, 0.34), transparent 15rem),
    radial-gradient(circle at 12% 84%, rgba(121, 184, 255, 0.26), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(248, 239, 255, 0.7));
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto auto;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(143, 108, 255, 0.16);
  border-radius: 26px;
  transform: rotate(12deg);
}

.hero-content::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -76px;
  width: 160px;
  height: 160px;
  border: 20px solid rgba(255, 127, 114, 0.1);
  border-radius: 44px;
  transform: rotate(17deg);
}

.hero .eyebrow {
  border-color: rgba(143, 108, 255, 0.26);
  background: rgba(255, 255, 255, 0.56);
  color: var(--accent-dark);
}

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

.hero h1 {
  max-width: 8ch;
  margin-top: 14px;
}

.hero-copy {
  max-width: 680px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.9vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-orbit {
  min-height: 380px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 70% 16%, rgba(255, 196, 107, 0.32), transparent 11rem),
    radial-gradient(circle at 20% 76%, rgba(143, 108, 255, 0.18), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(244, 236, 255, 0.64));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 28px 40px auto auto;
  width: 148px;
  height: 280px;
  border: 8px solid #2b2353;
  border-radius: 30px;
  background:
    linear-gradient(180deg, #2b2353 0 12%, #fff8f3 12% 100%);
  box-shadow: 0 24px 54px rgba(61, 38, 89, 0.18);
  transform: rotate(6deg);
}

.hero-orbit::after {
  content: "";
  position: absolute;
  left: 44px;
  bottom: 46px;
  width: 138px;
  height: 138px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), transparent 42%),
    var(--app-gradient);
  box-shadow: 0 24px 54px rgba(143, 108, 255, 0.22);
  transform: rotate(-10deg);
}

.brand-hero-mark {
  position: absolute;
  z-index: 3;
  right: 62px;
  top: 70px;
  width: 112px;
  height: 112px;
  border-radius: 28px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 54px rgba(61, 38, 89, 0.16);
  transform: rotate(6deg);
}

.tile {
  position: absolute;
  z-index: 2;
  min-width: 88px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.tile-one {
  top: 64px;
  left: 30px;
}

.tile-two {
  right: 30px;
  bottom: 102px;
}

.tile-three {
  left: 78px;
  bottom: 34px;
}

.section {
  padding: 46px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin-top: 14px;
}

.page-intro {
  max-width: 720px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.product-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card::before {
  content: "";
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  display: block;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 42%),
    var(--app-gradient);
  box-shadow: 0 16px 34px rgba(143, 108, 255, 0.16);
}

.product-card.has-real-icon::before {
  display: none;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -42px -62px auto;
  width: 138px;
  height: 138px;
  border: 20px solid rgba(17, 24, 39, 0.035);
  border-radius: 38px;
  transform: rotate(18deg);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 108, 255, 0.32);
  box-shadow: var(--shadow);
}

.product-card-active {
  border-color: rgba(143, 108, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 248, 243, 0.78), rgba(255, 255, 255, 0.7));
}

.product-card:nth-child(2)::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 42%),
    linear-gradient(135deg, var(--warm), var(--coral));
}

.product-card:nth-child(3)::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 42%),
    linear-gradient(135deg, var(--lavender), var(--sky));
}

.droppin-card {
  border-color: rgba(255, 127, 114, 0.28);
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 196, 107, 0.18), transparent 7rem),
    linear-gradient(180deg, rgba(255, 248, 243, 0.84), rgba(255, 255, 255, 0.74));
}

.droppin-card::before {
  border-radius: 999px 999px 999px 8px;
  background:
    radial-gradient(circle at 72% 42%, #2b2353 0 3px, transparent 4px),
    linear-gradient(135deg, var(--warm), var(--coral));
  transform: rotate(-12deg);
}

.droppin-card::after {
  border-color: rgba(255, 127, 114, 0.08);
}

.score-chip {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  margin-top: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 196, 107, 0.16);
  color: #7a4b0d;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.98rem;
}

.title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.support-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 196, 107, 0.25), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(248, 239, 255, 0.58));
  box-shadow: var(--shadow-sm);
}

.support-band h2 {
  margin-top: 10px;
}

.support-band p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

.support-email {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-top: 2px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 127, 114, 0.1);
  font-size: 1.08rem;
}

.page-main {
  padding: 38px 0 70px;
}

.page-main-wide {
  width: min(var(--container), calc(100% - 36px));
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 22px;
  padding: clamp(26px, 4.2vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 196, 107, 0.34), transparent 13rem),
    radial-gradient(circle at 12% 86%, rgba(121, 184, 255, 0.24), transparent 17rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(242, 232, 255, 0.68));
  color: var(--ink);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 22px 26px auto auto;
  width: 82px;
  height: 82px;
  border: 14px solid rgba(143, 108, 255, 0.07);
  border-radius: 26px;
  transform: rotate(14deg);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -54px -68px auto;
  width: 140px;
  height: 140px;
  border: 18px solid rgba(255, 127, 114, 0.09);
  border-radius: 38px;
  transform: rotate(18deg);
}

.page-hero > div {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 12ch;
  margin-top: 12px;
  font-size: clamp(2.35rem, 5.6vw, 4.1rem);
}

.page-hero p {
  max-width: 700px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.page-hero .badge {
  border-color: rgba(143, 108, 255, 0.26);
  background: rgba(255, 255, 255, 0.56);
  color: var(--accent-dark);
}

.page-hero .meta-line {
  width: fit-content;
  margin-top: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(143, 108, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 900;
}

.app-hero {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  align-items: center;
}

.app-hero h1 {
  max-width: none;
}

.page-hero-art {
  min-height: 210px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.app-icon-wrap {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.product-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 18px;
}

.app-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-banner {
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 196, 107, 0.2), transparent 10rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(242, 232, 255, 0.58));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.app-banner img {
  width: 100%;
  max-height: 360px;
  display: block;
  object-fit: cover;
}

.feature-art {
  min-height: 240px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.feature-art img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: block;
  object-fit: cover;
}

.app-banner-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
}

.app-mark {
  display: block;
  position: relative;
  width: 136px;
  height: 136px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 42%),
    var(--app-gradient);
  box-shadow: 0 30px 60px rgba(143, 108, 255, 0.24);
  transform: rotate(-8deg);
}

.app-mark::before,
.app-mark::after {
  content: "";
  position: absolute;
  display: block;
}

.app-mark-drop::before {
  width: 28px;
  height: 48px;
  left: 44px;
  top: 34px;
  border-radius: 28px 28px 30px 30px;
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(18deg);
}

.app-mark-drop::after {
  width: 38px;
  height: 22px;
  right: 28px;
  bottom: 34px;
  border-radius: 999px 999px 10px 10px;
  background: var(--warm);
}

.app-mark-pin {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 42%),
    linear-gradient(135deg, var(--warm), var(--coral));
}

.app-mark-pin::before {
  width: 50px;
  height: 50px;
  left: 43px;
  top: 32px;
  border: 11px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

.app-mark-pin::after {
  width: 15px;
  height: 40px;
  left: 61px;
  top: 76px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(24deg);
}

.app-mark-recipe {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 42%),
    linear-gradient(135deg, var(--lavender), var(--sky));
}

.app-mark-recipe::before {
  width: 66px;
  height: 84px;
  left: 35px;
  top: 28px;
  border-radius: 14px;
  background:
    linear-gradient(#ffffff 0 16px, transparent 16px 27px, #ffffff 27px 34px, transparent 34px 46px, #ffffff 46px 53px, transparent 53px),
    rgba(255, 255, 255, 0.34);
}

.app-mark-recipe::after {
  width: 23px;
  height: 56px;
  right: 32px;
  top: 40px;
  border-radius: 999px;
  background: var(--warm);
  transform: rotate(10deg);
}

.meta-row,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.content-stack {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.content-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 243, 0.58));
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.content-card + .content-card {
  margin-top: 14px;
}

.content-card h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.content-card h3 {
  font-size: 1.08rem;
}

.content-card p,
.content-card li {
  color: var(--muted);
  font-size: 0.99rem;
}

.content-card p {
  margin-top: 10px;
}

.document-panel {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.document-meta {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.document-section {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.document-section:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.document-section h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

.document-section p,
.document-section li {
  color: var(--muted);
  font-size: 1rem;
}

.document-section p {
  margin-top: 10px;
}

.document-section ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.card-heading {
  display: grid;
  gap: 12px;
}

.contact-line {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.link-grid a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.link-grid a:hover {
  border-color: rgba(143, 108, 255, 0.4);
  color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(61, 38, 89, 0.1);
}

.app-grid .product-card {
  min-height: 286px;
}

.showcase-card + .app-grid {
  margin-top: 16px;
}

.app-card h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.5fr);
  gap: 18px;
  align-items: center;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(98, 189, 247, 0.12);
  transform: rotate(14deg);
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 20px;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(121, 184, 255, 0.22), transparent 13rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 243, 0.66));
}

.feature-card img {
  width: 100%;
  max-height: 320px;
  display: block;
  border: 1px solid var(--line);
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.quick-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.quick-stat {
  min-height: 96px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.quick-stat strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.quick-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.screenshot-card {
  aspect-ratio: 9 / 16;
  min-height: 260px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, #2c2455 0 20px, #ffffff 20px 100%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.screenshot-card img {
  width: 100%;
  height: 100%;
  min-height: 244px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
}

.phone-frame {
  min-height: 220px;
  display: grid;
  place-items: end center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #2c2455 0 12%, transparent 12% 100%),
    radial-gradient(circle at 65% 30%, rgba(255, 196, 107, 0.2), transparent 5rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(242, 232, 255, 0.55));
  box-shadow: inset 0 0 0 6px rgba(44, 36, 85, 0.08);
}

.phone-frame span {
  width: 100%;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
}

.legal-section {
  padding-left: 30px;
}

.legal-section::before {
  content: "";
  position: absolute;
  inset: 22px auto 22px 0;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--violet), var(--coral));
}

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

.styled-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.email-card {
  display: flex;
  width: fit-content;
  max-width: 100%;
  min-height: 50px;
  align-items: center;
  margin-top: 14px;
  padding: 10px 15px;
  border: 1px solid rgba(143, 108, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-dark);
  font-size: clamp(1.02rem, 2.4vw, 1.26rem);
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: none;
}

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

.support-tip {
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.support-tip p {
  margin-top: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .hero,
  .app-hero,
  .showcase-card,
  .feature-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: 360px;
  }

  .hero-orbit {
    min-height: 320px;
  }

  .product-grid,
  .content-grid,
  .quick-stat-grid,
  .screenshot-strip,
  .screenshot-gallery,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 24px;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    gap: 4px;
  }

  nav a {
    min-height: 38px;
    padding: 7px 10px;
  }

  .hero {
    padding: 34px 0 56px;
  }

  .hero-content,
  .page-hero,
  .content-card,
  .support-band {
    padding: 22px;
    border-radius: 20px;
  }

  .hero-content {
    min-height: 0;
  }

  .hero-orbit,
  .page-hero-art:not(.feature-art) {
    display: none;
  }

  .feature-art,
  .feature-art img {
    min-height: 180px;
  }

  .app-banner img,
  .feature-card img {
    max-height: 240px;
  }

  .section {
    padding: 48px 0;
  }

  .page-main {
    padding: 36px 0 64px;
  }

  .page-hero h1,
  .hero h1 {
    max-width: none;
  }

  .button,
  .card-link,
  .cta-row .button {
    width: 100%;
  }

  .phone-frame {
    min-height: 180px;
  }

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

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