:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --surface: #ffffff;
  --wash: #f7f8fa;
  --mint: #22d3b3;
  --mint-soft: #dff8f1;
  --indigo: #6366f1;
  --indigo-soft: #e8e8ff;
  --coral: #ff7a59;
  --gold: #ffd35a;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.1);
  --soft-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
  font-family:
    Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(99, 102, 241, 0.12), transparent 32rem),
    radial-gradient(circle at 8% 38%, rgba(34, 211, 179, 0.12), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, var(--wash) 42%, #ffffff 100%);
  color: var(--ink);
}

a {
  color: inherit;
}

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

.site-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(226, 232, 240, 0.78);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  width: min(1160px, calc(100% - 36px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.14rem;
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.brand small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 690;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--indigo);
}

.button,
.ghost-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button {
  background: linear-gradient(135deg, var(--mint), var(--indigo));
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(99, 102, 241, 0.22);
}

.ghost-button {
  border: 1px solid #bfe8df;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 48px;
  align-items: center;
  padding: 86px 0 62px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: 42px;
  width: 480px;
  height: 160px;
  border-radius: 60% 50% 0 0;
  background:
    radial-gradient(circle at 22% 60%, rgba(34, 211, 179, 0.26), transparent 34%),
    radial-gradient(circle at 74% 36%, rgba(99, 102, 241, 0.16), transparent 34%);
  opacity: 0.65;
  pointer-events: none;
}

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

.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0 12px;
  border: 1px solid rgba(34, 211, 179, 0.42);
  border-radius: 999px;
  background: rgba(223, 248, 241, 0.7);
  color: #05766c;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 7.4vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
}

.gradient-word {
  background: linear-gradient(135deg, var(--mint), var(--indigo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  line-height: 1.58;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 680;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-line span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--coral);
}

.hero-panel {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.phone-shot {
  overflow: hidden;
  border-radius: 18px;
  background: #effaf7;
}

.phone-shot img {
  width: 100%;
}

.section {
  padding: 58px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.app-grid,
.feature-grid,
.legal-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

.app-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

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

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

.app-card,
.feature-card,
.legal-card,
.admin-card,
.info-panel,
.trust-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.app-card {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 22px;
  padding: 26px;
}

.app-card img {
  width: 98px;
  height: 98px;
  border-radius: 24px;
}

.app-card p,
.feature-card p,
.legal-card p,
.admin-card p,
.info-panel p,
.trust-card p,
.contact-card p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.55;
}

.feature-card,
.legal-card,
.admin-card,
.info-panel,
.trust-card,
.contact-card {
  padding: 24px;
}

.icon-circle {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 999px;
  background: var(--mint-soft);
  color: #05766c;
}

.icon-circle svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--mint-soft);
  color: #05766c;
  font-size: 0.82rem;
  font-weight: 780;
}

.status-pill {
  background: #fff3d0;
  color: #8a5b00;
}

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

.coming-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 255, 255, 0.95), transparent 13%),
    linear-gradient(135deg, #dff8f1, #dcd7ff);
  color: var(--indigo);
  font-size: 2rem;
  font-weight: 900;
}

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

.preview-strip img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 999px;
  background:
    linear-gradient(45deg, transparent 44%, var(--mint) 45% 55%, transparent 56%) 50% 50% / 13px 13px no-repeat,
    var(--mint-soft);
}

.footer {
  margin-top: 50px;
  padding: 36px 0 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(130px, 0.4fr));
  gap: 24px;
}

.footer h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.98rem;
}

.footer nav {
  display: grid;
  gap: 8px;
}

.footer a {
  text-decoration: none;
}

.footer-bottom {
  width: min(1160px, calc(100% - 36px));
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}

.legal-page {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.legal-page h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-page h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-page a,
.footer-bottom a {
  color: #05766c;
  font-weight: 760;
}

.legal-page section {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.admin-layout {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 56px 0;
}

.admin-card {
  width: min(100%, 540px);
}

.admin-card form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.admin-card label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.admin-card input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
}

.admin-note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 12px;
  background: #eef6fb;
  color: #315b76;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .topbar-inner {
    min-height: 66px;
  }

  .nav {
    display: none;
  }

  .hero,
  .app-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .feature-grid,
  .legal-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-shell,
  .topbar-inner,
  .footer-inner,
  .footer-bottom,
  .legal-page {
    width: min(100% - 28px, 1160px);
  }

  .hero::after {
    display: none;
  }

  .app-card,
  .coming-card {
    grid-template-columns: 1fr;
  }

  .app-card img,
  .coming-icon {
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }

  .preview-strip,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
