* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.dark .site-header {
  border-color: rgba(30, 41, 59, 0.92);
  background: rgba(2, 6, 23, 0.94);
  box-shadow: 0 2px 12px rgba(2, 6, 23, 0.28);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(226, 232, 240, 1);
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(12px);
}

.dark .site-header.is-scrolled {
  border-bottom-color: rgba(30, 41, 59, 1);
  background: rgba(2, 6, 23, 0.98);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.5);
}

.hero-fullbleed {
  position: relative;
  background-image: linear-gradient(120deg, rgba(8, 47, 73, 0.64), rgba(12, 74, 110, 0.34)),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 650px at 72% 14%, rgba(6, 182, 212, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.26));
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-primary-cta {
  min-height: 3.25rem;
  padding-inline: 1.45rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-color: rgba(8, 145, 178, 1);
  background: linear-gradient(135deg, #06b6d4, #0e7490 54%, #155e75);
  box-shadow: 0 16px 34px rgba(8, 145, 178, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.hero-primary-cta:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 40px rgba(8, 145, 178, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-text-link {
  color: rgb(186 230 253);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 0.28rem;
  text-decoration-color: rgba(165, 243, 252, 0.45);
  transition: color 0.24s ease, text-decoration-color 0.24s ease, transform 0.24s ease;
}

.hero-text-link:hover {
  color: rgb(224 242 254);
  text-decoration-color: rgba(255, 255, 255, 0.95);
}

.hero-device {
  position: relative;
  border: 1px solid rgba(103, 232, 249, 0.34);
  border-radius: 1.4rem;
  padding: 0.9rem;
  background: linear-gradient(170deg, rgba(14, 116, 144, 0.45), rgba(2, 6, 23, 0.8));
  box-shadow: 0 28px 75px rgba(2, 6, 23, 0.5);
}

.hero-proof {
  border: 1px solid rgba(125, 211, 252, 0.4);
  border-radius: 1.15rem;
  padding: 1.2rem;
  background: linear-gradient(170deg, rgba(8, 47, 73, 0.78), rgba(2, 6, 23, 0.92));
  box-shadow: 0 22px 58px rgba(2, 6, 23, 0.42);
  animation: proofFloat 7s ease-in-out infinite;
}

.hero-proof-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(103 232 249);
}

.hero-proof-title {
  margin-top: 0.5rem;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.hero-proof-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.65rem;
  color: rgb(226 232 240);
  font-size: 0.88rem;
}

.hero-proof-list li {
  list-style: none;
  position: relative;
  padding-left: 1.05rem;
  line-height: 1.35;
}

.hero-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgb(34 211 238);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

.hero-proof-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-proof-chip {
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid rgba(125, 211, 252, 0.52);
  color: rgb(165 243 252);
  border-radius: 999px;
  padding: 0.25rem 0.52rem;
}

.hero-micro {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: rgb(186 230 253);
}

.steps-grid {
  display: grid;
  gap: 0.85rem;
}

.step-card {
  border: 1px solid rgb(226 232 240);
  border-radius: 1rem;
  background: #fff;
  padding: 1rem;
}

.dark .step-card {
  border-color: rgb(30 41 59);
  background: rgb(15 23 42);
}

.step-no {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.step-card h3 {
  margin-top: 0.65rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.step-card p {
  margin-top: 0.42rem;
  color: rgb(71 85 105);
}

.dark .step-card p {
  color: rgb(148 163 184);
}

.comparison-panel {
  border: 1px solid rgb(207 250 254);
  border-radius: 1.1rem;
  padding: 1.05rem;
  background: linear-gradient(180deg, rgba(236, 254, 255, 0.72), rgba(255, 255, 255, 0.95));
}

.dark .comparison-panel {
  border-color: rgba(8, 145, 178, 0.45);
  background: linear-gradient(180deg, rgba(8, 47, 73, 0.34), rgba(2, 6, 23, 0.68));
}

.compare-grid {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 0.45rem;
  align-items: center;
}

.compare-row strong {
  font-size: 0.92rem;
}

.compare-head {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgb(14 116 144);
  font-weight: 800;
}

.dark .compare-head {
  color: rgb(103 232 249);
}

.compare-cell {
  border: 1px solid rgb(186 230 253);
  border-radius: 0.65rem;
  background: #fff;
  padding: 0.5rem 0.55rem;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 700;
}

.dark .compare-cell {
  border-color: rgba(8, 145, 178, 0.4);
  background: rgba(15, 23, 42, 0.82);
}

.compare-cell.good {
  color: rgb(5 150 105);
}

.compare-cell.warn {
  color: rgb(180 83 9);
}

.audience-grid {
  display: grid;
  gap: 0.8rem;
}

.audience-item {
  border: 1px solid rgb(226 232 240);
  border-radius: 0.9rem;
  padding: 0.9rem;
  background: #fff;
}

.dark .audience-item {
  border-color: rgb(30 41 59);
  background: rgb(15 23 42);
}

.audience-item h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
  font-weight: 800;
}

.audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  font-size: 0.95rem;
  border-radius: 999px;
  background: rgb(224 242 254);
  color: rgb(14 116 144);
  flex: 0 0 auto;
}

.dark .audience-icon {
  background: rgba(8, 145, 178, 0.25);
  color: rgb(103 232 249);
}

.audience-item p {
  margin-top: 0.35rem;
  color: rgb(71 85 105);
  font-size: 0.88rem;
}

.dark .audience-item p {
  color: rgb(148 163 184);
}

.stars {
  color: rgb(245 158 11);
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  font-weight: 800;
}

.testimonial-aggregate {
  color: rgb(14 116 144);
  font-size: 0.9rem;
}

.dark .testimonial-aggregate {
  color: rgb(103 232 249);
}

.testimonial-rating {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgb(14 116 144);
}

.dark .testimonial-rating {
  color: rgb(103 232 249);
}

.trust-badges {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.trust-badge {
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.6);
  color: rgb(165 243 252);
  padding: 0.25rem 0.56rem;
}

.screenshot-grid {
  display: grid;
  gap: 1.2rem;
}

.screenshot-card {
  margin: 0;
  border: 1px solid rgb(226 232 240);
  border-radius: 1rem;
  padding: 0.8rem;
  background: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.dark .screenshot-card {
  border-color: rgb(30 41 59);
  background: rgb(15 23 42);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
  aspect-ratio: 9 / 19;
  object-fit: cover;
  background: linear-gradient(180deg, rgb(248 250 252), rgb(226 232 240));
}

.screenshot-card figcaption {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgb(71 85 105);
}

.dark .screenshot-card figcaption {
  color: rgb(148 163 184);
}

.screenshot-card:hover {
  transform: translateY(-4px);
  border-color: rgb(125 211 252);
  box-shadow: 0 20px 28px rgba(15, 23, 42, 0.1);
}

.hero-device::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 1.2rem;
  padding: 1px;
  background: linear-gradient(140deg, rgba(34, 211, 238, 0.5), rgba(255, 255, 255, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.device-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(165 243 252);
  margin-bottom: 0.65rem;
}

.device-pill-row {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.device-pill {
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(125, 211, 252, 0.55);
  color: rgb(165 243 252);
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
}

.app-mock {
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 1.05rem;
  overflow: hidden;
  background: #e5e7eb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 0.55rem 0.62rem;
  background: linear-gradient(180deg, #4b63f0, #4263eb);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.mock-brand {
  font-size: 0.73rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.mock-chip {
  font-size: 0.63rem;
  font-weight: 700;
  color: #2f3f9c;
  background: #dbe4ff;
  border-radius: 999px;
  padding: 0.18rem 0.42rem;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.58rem 0.55rem 0.48rem;
}

.mock-stat {
  border: 1px solid #e5e7eb;
  border-radius: 0.7rem;
  padding: 0.46rem;
  background: #fff;
}

.mock-stat p {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.mock-stat h4 {
  margin-top: 0.22rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
}

.mock-list {
  display: grid;
  gap: 0;
  padding: 0 0.55rem 0.62rem;
}

.mock-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.44rem;
  border-top: 1px solid #e5e7eb;
  padding: 0.48rem 0.1rem;
  background: transparent;
}

.mock-row span {
  font-size: 0.72rem;
  color: #0f172a;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-sub {
  margin-top: 0.1rem;
  font-size: 0.65rem;
  color: #64748b;
}

.mock-left {
  min-width: 0;
}

.mock-eye {
  font-size: 0.58rem;
  color: #4263eb;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid #dbe4ff;
  background: #eef2ff;
  border-radius: 999px;
  padding: 0.18rem 0.32rem;
}

.mock-tabbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.22rem;
  border-top: 1px solid #d1d5db;
  padding: 0.32rem 0.38rem 0.4rem;
  background: #fff;
}

.mock-tab {
  text-align: center;
  font-size: 0.62rem;
  color: #64748b;
}

.mock-tab.active {
  color: #4263eb;
  font-weight: 800;
}

.btn-primary,
.btn-secondary,
.btn-white,
.btn-outline-white {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 0.85rem;
  padding: 0.78rem 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.btn-primary::before,
.btn-secondary::before,
.btn-white::before,
.btn-outline-white::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.btn-primary {
  color: #fff;
  border: 1px solid rgba(8, 145, 178, 0.9);
  background: linear-gradient(135deg, #06b6d4, #0e7490 58%, #155e75);
  box-shadow: 0 10px 24px rgba(8, 145, 178, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 40%, rgba(255, 255, 255, 0.16));
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-white:hover,
.btn-outline-white:hover {
  transform: translateY(-2px);
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-white:hover::before,
.btn-outline-white:hover::before {
  opacity: 1;
}

.btn-secondary {
  color: rgb(15 23 42);
  border: 1px solid rgb(186 230 253);
  background: linear-gradient(180deg, rgb(255 255 255), rgb(241 245 249));
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.btn-secondary::before {
  background: linear-gradient(120deg, rgba(34, 211, 238, 0.14), transparent 45%, rgba(34, 211, 238, 0.08));
}

.dark .btn-secondary {
  color: rgb(226 232 240);
  border-color: rgba(8, 145, 178, 0.45);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.95));
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.45);
}

.header-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.48rem 0.92rem;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1;
  border: 1px solid rgb(103 232 249);
  color: rgb(8 145 178);
  background: linear-gradient(180deg, rgb(236 254 255), rgb(207 250 254));
  box-shadow: 0 6px 14px rgba(8, 145, 178, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.header-app-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgb(236 254 255), rgb(165 243 252));
  box-shadow: 0 10px 20px rgba(8, 145, 178, 0.24);
}

.dark .header-app-btn {
  border-color: rgba(14, 116, 144, 0.95);
  color: rgb(165 243 252);
  background: linear-gradient(180deg, rgba(8, 47, 73, 0.88), rgba(12, 74, 110, 0.8));
  box-shadow: 0 8px 16px rgba(2, 6, 23, 0.45);
}

.btn-white {
  color: rgb(8 145 178);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, #fff, rgb(236 254 255));
  box-shadow: 0 10px 24px rgba(8, 145, 178, 0.25);
}

.btn-white::before {
  background: linear-gradient(120deg, rgba(34, 211, 238, 0.15), transparent 50%, rgba(34, 211, 238, 0.12));
}

.btn-outline-white {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.22);
}

.btn-outline-white::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 45%, rgba(34, 211, 238, 0.12));
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-white:focus-visible,
.btn-outline-white:focus-visible,
.header-app-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.26), 0 10px 24px rgba(8, 145, 178, 0.22);
}

.btn-primary:active,
.btn-secondary:active,
.btn-white:active,
.btn-outline-white:active,
.header-app-btn:active {
  transform: translateY(0);
}

.story-block {
  padding: 1rem 0;
  border-top: 1px solid rgb(226 232 240);
}

.dark .story-block {
  border-color: rgb(51 65 85);
}

.story-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
  color: rgb(8 145 178);
}

.story-title {
  margin-top: 0.6rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.story-copy {
  margin-top: 0.8rem;
  color: rgb(71 85 105);
}

.dark .story-copy {
  color: rgb(148 163 184);
}

.download-panel {
  border: 1px solid rgb(14 116 144 / 0.6);
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(8, 145, 178, 0.3), rgba(8, 47, 73, 0.65));
  padding: 1.25rem;
}

.urgency {
  border: 1px solid rgb(186 230 253);
  border-radius: 1.1rem;
  padding: 1.2rem;
  background: linear-gradient(170deg, rgba(236, 254, 255, 0.85), rgba(255, 255, 255, 0.96));
}

.dark .urgency {
  border-color: rgba(14, 116, 144, 0.5);
  background: linear-gradient(170deg, rgba(8, 47, 73, 0.4), rgba(2, 6, 23, 0.72));
}

.urgency-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgb(8 145 178);
}

.dark .urgency-kicker {
  color: rgb(103 232 249);
}

.urgency h3 {
  margin-top: 0.4rem;
  font-size: 1.65rem;
  line-height: 1.2;
  font-weight: 800;
  color: rgb(15 23 42);
}

.dark .urgency h3 {
  color: rgb(241 245 249);
}

.urgency p:last-child {
  margin-top: 0.55rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(51 65 85);
  max-width: 54rem;
}

.dark .urgency p:last-child {
  color: rgb(203 213 225);
}

.feature-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.feature-card-head h2,
.feature-card-head h3 {
  margin: 0;
  line-height: 1.25;
}

.feature-card {
  border: 1px solid rgb(226 232 240);
  border-radius: 1rem;
  padding: 1.25rem;
  background: #fff;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  background: rgb(224 242 254);
  color: rgb(14 116 144);
  font-size: 1.05rem;
  line-height: 1;
  flex: 0 0 auto;
}

.dark .feature-card-icon {
  background: rgba(8, 145, 178, 0.24);
  color: rgb(103 232 249);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgb(125 211 252);
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.06);
}

.impact {
  margin-top: 0.65rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgb(226 232 240);
  font-size: 0.86rem;
  font-weight: 700;
  color: rgb(14 116 144);
}

.dark .feature-card {
  border-color: rgb(30 41 59);
  background: rgb(15 23 42);
}

.dark .impact {
  border-top-color: rgb(51 65 85);
  color: rgb(103 232 249);
}

.faq-item {
  border: 1px solid rgb(226 232 240);
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
  background: #fff;
}

.dark .faq-item {
  border-color: rgb(30 41 59);
  background: rgb(15 23 42);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin-top: 0.75rem;
  color: rgb(71 85 105);
}

.dark .faq-item p {
  color: rgb(148 163 184);
}

.input-field {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgb(203 213 225);
  background: #fff;
  padding: 0.7rem 0.8rem;
}

.dark .input-field {
  border-color: rgb(51 65 85);
  background: rgb(2 6 23);
}

.mobile-download-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: rgba(8, 145, 178, 0.97);
  border-top: 1px solid rgba(34, 211, 238, 0.6);
}

.mobile-download-bar a {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 800;
  padding: 0.9rem 1rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.trust-quote {
  border-left: 4px solid #0891b2;
  padding: 0.75rem 1rem;
  font-size: 1.08rem;
  color: rgb(51 65 85);
}

.dark .trust-quote {
  color: rgb(203 213 225);
  border-left-color: #22d3ee;
}

.trust-quote footer {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: rgb(100 116 139);
}

.dark .trust-quote footer {
  color: rgb(148 163 184);
}

.ios-waitlist {
  border: 1px solid rgb(186 230 253);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
}

.dark .ios-waitlist {
  border-color: rgba(14, 116, 144, 0.6);
  background: rgba(2, 6, 23, 0.65);
}

.ios-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.ios-form input {
  width: 100%;
  border: 1px solid rgb(125 211 252);
  border-radius: 0.75rem;
  padding: 0.8rem 0.9rem;
  background: #fff;
}

.dark .ios-form input {
  border-color: rgba(8, 145, 178, 0.6);
  background: rgba(15, 23, 42, 0.8);
}

.ios-form button {
  border: 0;
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0891b2, #0e7490);
  color: #fff;
}

.feature-hero-band {
  border: 1px solid rgb(207 250 254);
  border-radius: 1.2rem;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(236, 254, 255, 0.8), rgba(255, 255, 255, 0.9));
  display: grid;
  gap: 1rem;
}

.dark .feature-hero-band {
  border-color: rgba(8, 145, 178, 0.45);
  background: linear-gradient(180deg, rgba(8, 47, 73, 0.35), rgba(2, 6, 23, 0.6));
}

.feature-band-grid {
  display: grid;
  gap: 0.9rem;
}

.feature-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.feature-signal {
  border: 1px solid rgb(186 230 253);
  border-radius: 0.9rem;
  background: rgba(236, 254, 255, 0.8);
  padding: 0.85rem;
}

.dark .feature-signal {
  border-color: rgba(8, 145, 178, 0.45);
  background: rgba(15, 23, 42, 0.75);
}

.feature-signal p {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(14 116 144);
  font-weight: 800;
}

.dark .feature-signal p {
  color: rgb(103 232 249);
}

.feature-signal h3 {
  margin-top: 0.25rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.category-grid {
  display: grid;
  gap: 1rem;
}

.use-cases-grid {
  display: grid;
  gap: 0.9rem;
}

.use-case-card {
  border: 1px solid rgb(226 232 240);
  border-radius: 1rem;
  padding: 1rem;
  background: #fff;
}

.dark .use-case-card {
  border-color: rgb(30 41 59);
  background: rgb(15 23 42);
}

.use-case-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.use-case-card p {
  margin-top: 0.45rem;
  font-size: 0.92rem;
  color: rgb(71 85 105);
}

.dark .use-case-card p {
  color: rgb(148 163 184);
}

.section-band-categories {
  background: linear-gradient(180deg, rgba(236, 254, 255, 0.65), rgba(248, 250, 252, 0.85));
  border-top: 1px solid rgb(207 250 254);
  border-bottom: 1px solid rgb(207 250 254);
}

.dark .section-band-categories {
  background: linear-gradient(180deg, rgba(8, 47, 73, 0.25), rgba(2, 6, 23, 0.55));
  border-top-color: rgba(8, 145, 178, 0.35);
  border-bottom-color: rgba(8, 145, 178, 0.35);
}

.section-band-product {
  background: #fff;
}

.dark .section-band-product {
  background: rgb(2 6 23);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(14 116 144);
}

.dark .section-kicker {
  color: rgb(103 232 249);
}

.section-kicker::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgb(34 211 238);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.22);
}

.section-frame {
  border: 1px solid rgb(226 232 240);
  border-radius: 1.1rem;
  padding: 1rem;
  background: #fff;
}

.dark .section-frame {
  border-color: rgb(30 41 59);
  background: rgb(15 23 42);
}

.category-panel {
  border: 1px solid rgb(207 250 254);
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(236, 254, 255, 0.7), rgba(255, 255, 255, 0.95));
}

.dark .category-panel {
  border-color: rgba(8, 145, 178, 0.45);
  background: linear-gradient(180deg, rgba(8, 47, 73, 0.35), rgba(2, 6, 23, 0.62));
}

.category-panel h3 {
  font-size: 1.15rem;
  font-weight: 800;
}

.category-cloud {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgb(165 243 252);
  background: rgb(255 255 255);
  color: rgb(14 116 144);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.58rem;
}

.dark .category-pill {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(15, 23, 42, 0.86);
  color: rgb(165 243 252);
}

.import-spotlight {
  border: 1px solid rgb(165 243 252);
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(145deg, rgba(236, 254, 255, 0.92), rgba(255, 255, 255, 0.98));
  display: grid;
  gap: 1rem;
}

.dark .import-spotlight {
  border-color: rgba(34, 211, 238, 0.45);
  background: linear-gradient(145deg, rgba(8, 47, 73, 0.44), rgba(2, 6, 23, 0.76));
}

.import-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.import-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  flex: 0 0 auto;
}

.import-steps {
  display: grid;
  gap: 0.48rem;
}

.import-step {
  border: 1px solid rgb(186 230 253);
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.55rem 0.65rem;
  font-size: 0.84rem;
  color: rgb(15 23 42);
}

.dark .import-step {
  border-color: rgba(34, 211, 238, 0.32);
  background: rgba(15, 23, 42, 0.82);
  color: rgb(226 232 240);
}

.feature-band-grid div h3 {
  font-weight: 800;
  font-size: 1.05rem;
}

.feature-band-grid div p {
  margin-top: 0.35rem;
  color: rgb(71 85 105);
}

.dark .feature-band-grid div p {
  color: rgb(148 163 184);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgb(203 213 225);
  border-radius: 0.8rem;
  padding: 0.55rem 0.7rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.social-link:hover {
  border-color: rgb(8 145 178);
  color: rgb(14 116 144);
}

.dark .social-link {
  border-color: rgb(51 65 85);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.testimonial-card {
  display: grid;
  gap: 0.8rem;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.testimonial-avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgb(165 243 252);
}

.testimonial-name {
  font-weight: 800;
  font-size: 0.9rem;
}

.testimonial-meta {
  font-size: 0.75rem;
  color: rgb(100 116 139);
}

.dark .testimonial-meta {
  color: rgb(148 163 184);
}

.blog-post {
  position: relative;
}

.blog-content {
  border: 1px solid rgb(226 232 240);
  border-radius: 1.1rem;
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.dark .blog-content {
  border-color: rgb(30 41 59);
  background: rgb(15 23 42);
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.4);
}

.blog-content h2 {
  margin-top: 1.1rem;
  line-height: 1.25;
}

.blog-content p,
.blog-content li {
  font-size: 1rem;
}

.blog-promo {
  margin-top: 1.2rem;
  border: 1px solid rgb(125 211 252);
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(150deg, rgba(236, 254, 255, 0.88), rgba(255, 255, 255, 0.98));
}

.dark .blog-promo {
  border-color: rgba(14, 116, 144, 0.6);
  background: linear-gradient(150deg, rgba(8, 47, 73, 0.46), rgba(2, 6, 23, 0.8));
}

.blog-promo h3 {
  margin-top: 0.3rem;
  font-size: 1.6rem;
  line-height: 1.2;
}

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

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

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

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

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

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

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

  .ios-waitlist {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }
}

@media (max-width: 879px) {
  .screenshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .brand-text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-proof {
    animation: none;
  }

  .screenshot-card,
  .btn-primary,
  .btn-secondary,
  .btn-white,
  .btn-outline-white {
    transition: none;
  }
}

.logo_svg {
  height: 50px; width: auto; margin-top: 4px; margin-right: -5px;
}
