:root {
  --cream: #fbf2e8;
  --cream-soft: #fff8f2;
  --paper: rgba(255, 255, 255, 0.76);
  --paper-strong: rgba(255, 255, 255, 0.9);
  --paper-dark: rgba(25, 30, 54, 0.94);
  --ink: #25233b;
  --ink-soft: #4d4966;
  --muted: #6f6a82;
  --muted-soft: #8a849d;
  --line: rgba(37, 35, 59, 0.08);
  --line-strong: rgba(37, 35, 59, 0.14);
  --orange: #ff6a2a;
  --orange-deep: #ff4e19;
  --orange-soft: rgba(255, 106, 42, 0.12);
  --amber: #f2bb6d;
  --mint: #96d3c5;
  --navy: #21263f;
  --navy-soft: #31385f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(35, 31, 47, 0.12);
  --shadow-strong: 0 30px 90px rgba(35, 31, 47, 0.18);
  --radius-hero: 40px;
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --max: 1180px;
  --section-space: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", "Futura", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 106, 42, 0.14), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(150, 211, 197, 0.16), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(242, 187, 109, 0.12), transparent 35%),
    linear-gradient(180deg, #fff8f2 0%, #fbf2e8 52%, #f8eee2 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.68), transparent 18%),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.42), transparent 20%),
    radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.24), transparent 12%);
}

a {
  color: inherit;
}

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

.main-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 24px 0 84px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 34px rgba(67, 52, 82, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  padding: 8px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 106, 42, 0.14), rgba(255, 106, 42, 0.03));
  border: 1px solid rgba(255, 106, 42, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand-wordmark {
  width: 164px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.nav-link:hover {
  transform: translateY(-1px);
  color: var(--ink);
  background: rgba(37, 35, 59, 0.05);
}

.hero,
.card,
.copy-section,
.page-aside,
.footer-card,
.showcase-panel,
.page-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: var(--paper);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 40px;
  border-radius: var(--radius-hero);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.22), transparent 32%),
    radial-gradient(circle at bottom left, rgba(150, 211, 197, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 242, 0.82));
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius-hero) - 14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

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

.store-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 35, 59, 0.07);
  box-shadow: 0 18px 30px rgba(36, 30, 53, 0.08);
}

.store-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 26px rgba(255, 106, 42, 0.16);
}

.store-meta {
  display: grid;
  gap: 5px;
}

.store-meta strong {
  font-size: 20px;
  line-height: 1;
}

.store-meta span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.store-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-badge {
  background: rgba(37, 35, 59, 0.05);
  color: var(--ink-soft);
}

.eyebrow {
  background: rgba(255, 106, 42, 0.1);
  color: var(--orange-deep);
}

.eyebrow-dark {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

.hero h1,
.section-intro h2,
.page-hero h1 {
  margin: 18px 0 14px;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 11.5ch;
  font-size: clamp(46px, 6vw, 78px);
}

.hero h1 span {
  display: block;
  color: var(--orange-deep);
}

.lead,
.section-intro p,
.page-hero p {
  margin: 0;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.78;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0 18px;
}

.primary-button,
.ghost-button,
.inline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 18px 32px rgba(255, 92, 29, 0.28);
}

.ghost-button,
.inline-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 35, 59, 0.08);
}

.primary-button:hover,
.ghost-button:hover,
.inline-button:hover {
  transform: translateY(-1px);
}

.subtle-note {
  color: var(--muted-soft);
  font-size: 14px;
  line-height: 1.7;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-pill,
.tag,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(37, 35, 59, 0.06);
  color: var(--ink-soft);
}

.tag {
  background: rgba(255, 106, 42, 0.08);
  color: var(--orange-deep);
}

.status-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: 10%;
  top: 7%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 42, 0.18), transparent 70%);
  filter: blur(6px);
}

.device {
  position: absolute;
  overflow: hidden;
  border-radius: 40px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 240, 229, 0.78));
  box-shadow: var(--shadow);
}

.device img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(35, 31, 47, 0.12);
}

.device-main {
  width: min(378px, 72%);
  right: 18px;
  top: 34px;
  transform: rotate(5deg);
  animation: float-main 8s ease-in-out infinite;
}

.device-secondary {
  width: min(316px, 60%);
  left: 0;
  bottom: 34px;
  transform: rotate(-8deg);
  animation: float-secondary 8s ease-in-out infinite;
}

.floating-card,
.floating-note,
.mini-panel {
  position: absolute;
  padding: 16px 18px;
  border-radius: 22px;
  box-shadow: 0 20px 42px rgba(19, 24, 46, 0.2);
}

.floating-card {
  left: 24px;
  top: 20px;
  max-width: 220px;
  background: rgba(33, 38, 63, 0.94);
  color: rgba(255, 255, 255, 0.86);
}

.floating-note {
  right: 22px;
  bottom: 12px;
  max-width: 208px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(37, 35, 59, 0.08);
  color: var(--ink);
}

.mini-panel {
  left: 18px;
  bottom: 210px;
  max-width: 210px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(37, 35, 59, 0.06);
}

.floating-card strong,
.floating-note strong,
.mini-panel strong,
.feature-card h3,
.metric-card h3,
.showcase-panel h3,
.copy-section h2,
.copy-section h3,
.page-aside h3,
.footer-card h3 {
  display: block;
  margin: 0 0 8px;
  line-height: 1.08;
}

.floating-card strong,
.floating-note strong,
.mini-panel strong {
  font-size: 18px;
}

.floating-card p,
.floating-note p,
.mini-panel p,
.feature-card p,
.metric-card p,
.copy-section p,
.copy-section li,
.page-aside p,
.page-aside li,
.footer-card p,
.showcase-panel p {
  margin: 0;
  line-height: 1.74;
}

.section-intro {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 72px 0 22px;
}

.section-intro h2,
.page-hero h1 {
  font-size: clamp(34px, 4.6vw, 62px);
}

.section-intro p,
.page-hero p {
  color: var(--muted);
  font-size: 17px;
}

.feature-grid,
.metrics-grid,
.showcase-grid,
.app-strip,
.premium-band,
.info-rail,
.page-hero,
.page-grid,
.topics-grid,
.faq-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.metric-card,
.copy-section,
.page-aside,
.footer-card,
.showcase-panel,
.page-card {
  padding: 26px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: linear-gradient(160deg, rgba(255, 106, 42, 0.12), rgba(255, 106, 42, 0.04));
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-card h3,
.metric-card h3 {
  font-size: 24px;
}

.feature-card p,
.metric-card p,
.copy-section p,
.copy-section li,
.page-aside p,
.footer-card p,
.showcase-panel p {
  color: var(--muted);
  font-size: 15px;
}

.app-strip {
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 18px;
}

.app-shot {
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.shot-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shot-frame {
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 232, 217, 0.72));
  border: 1px solid rgba(37, 35, 59, 0.06);
}

.shot-frame img {
  border-radius: 22px;
}

.shot-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.app-shot.text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, var(--navy), var(--navy-soft));
  color: var(--white);
}

.app-shot.text .shot-label,
.app-shot.text .shot-note {
  color: rgba(255, 255, 255, 0.74);
}

.app-shot.text h3 {
  margin: 6px 0 12px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.showcase-grid {
  grid-template-columns: 1.02fr 0.98fr;
  margin-top: 18px;
}

.showcase-panel.dark,
.page-card.dark,
.premium-band {
  background: linear-gradient(160deg, var(--navy), var(--navy-soft));
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.showcase-panel.dark p,
.showcase-panel.dark li,
.showcase-panel.dark .section-caption,
.page-card.dark p,
.premium-band p,
.premium-band li {
  color: rgba(255, 255, 255, 0.78);
}

.showcase-panel h3 {
  font-size: 34px;
  letter-spacing: -0.04em;
}

.section-caption {
  font-size: 15px;
}

.phone-frame {
  margin-top: 24px;
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 230, 212, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 50px rgba(25, 20, 45, 0.18);
}

.phone-frame img {
  border-radius: 24px;
}

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

.stat-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.premium-band {
  grid-template-columns: 1.08fr 0.92fr;
  margin-top: 18px;
  padding: 30px;
}

.premium-band h2 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.detail-list,
.bullet-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.detail-list li,
.bullet-list li {
  position: relative;
  padding-left: 22px;
}

.detail-list li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.premium-aside {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.premium-aside h3 {
  margin: 0;
  font-size: 28px;
}

.info-rail {
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}

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

.contact-row {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(37, 35, 59, 0.06);
}

.label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-row a {
  color: var(--orange-deep);
  text-decoration: none;
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 20px 4px 0;
}

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

.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.page-hero {
  grid-template-columns: 1.1fr 0.9fr;
  margin-bottom: 20px;
}

.page-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.stack {
  display: grid;
  gap: 18px;
}

.copy-section h2 {
  font-size: 28px;
}

.copy-section h3 {
  font-size: 22px;
}

.copy-section ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.page-aside {
  position: sticky;
  top: 96px;
}

.aside-logo {
  width: 60px;
  height: 60px;
  padding: 10px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 106, 42, 0.12), rgba(255, 106, 42, 0.04));
}

.aside-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.aside-list a {
  color: var(--orange-deep);
  text-decoration: none;
  font-weight: 800;
}

.note-banner {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 106, 42, 0.08);
  border: 1px solid rgba(255, 106, 42, 0.12);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.74;
}

.topics-grid,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@keyframes float-main {
  0%, 100% {
    transform: rotate(5deg) translateY(0);
  }

  50% {
    transform: rotate(4deg) translateY(-10px);
  }
}

@keyframes float-secondary {
  0%, 100% {
    transform: rotate(-8deg) translateY(0);
  }

  50% {
    transform: rotate(-6deg) translateY(10px);
  }
}

@media (max-width: 980px) {
  .hero,
  .page-hero,
  .page-grid,
  .showcase-grid,
  .app-strip,
  .premium-band,
  .info-rail,
  .feature-grid,
  .topics-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .page-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .main-shell {
    width: min(calc(100% - 20px), var(--max));
    padding-bottom: 64px;
  }

  .site-header,
  .hero,
  .feature-card,
  .metric-card,
  .copy-section,
  .page-aside,
  .footer-card,
  .showcase-panel,
  .page-card,
  .premium-band,
  .app-shot {
    padding: 22px;
  }

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

  .brand-wordmark {
    width: 142px;
  }

  .hero h1,
  .section-intro h2,
  .page-hero h1,
  .premium-band h2 {
    font-size: 38px;
  }

  .lead,
  .section-intro p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .device-main {
    width: 74%;
    right: 0;
  }

  .device-secondary {
    width: 60%;
    left: 0;
  }

  .floating-card,
  .floating-note,
  .mini-panel {
    max-width: 184px;
    padding: 14px 16px;
  }

  .store-card {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
