@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@600;700;800;900&display=swap");

:root {
  --navy-deep: #00112a;
  --navy: #001b40;
  --navy-soft: #0d2d57;
  --blue: #008ceb;
  --green: #23b867;
  --yellow: #ffc400;
  --yellow-soft: #ffd229;
  --bg: #f3f6fb;
  --surface: rgba(255, 255, 255, 0.9);
  --white: #ffffff;
  --text: #16304d;
  --muted: #6a7a90;
  --line: rgba(13, 45, 87, 0.12);
  --shadow: 0 24px 60px rgba(0, 17, 42, 0.14);
  --shadow-sm: 0 12px 30px rgba(0, 17, 42, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 140, 235, 0.18), transparent 28%),
    linear-gradient(180deg, #eef4fb 0%, #f8fbff 100%);
}

body.showcase {
  padding: 28px 18px 48px;
}

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

.hero-wrap {
  max-width: 1160px;
  margin: 0 auto;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.brand-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--yellow), var(--yellow-soft));
  box-shadow: 16px 0 0 var(--blue), 32px 0 0 var(--green);
  margin-right: 24px;
}

.hero-card {
  margin-top: 18px;
  background:
    linear-gradient(135deg, rgba(0, 17, 42, 0.98), rgba(13, 45, 87, 0.96));
  border-radius: 36px;
  padding: 32px 24px;
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.28), transparent 70%);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bcd4f3;
  margin-bottom: 14px;
  font-weight: 700;
}

.hero-card h1,
.screen-head h1,
.screen-head h2,
.section-title,
.mobile-title,
.mini-stat strong,
.cta-btn,
.ghost-btn,
.tab-pill,
.nav-link,
.screen-card h3 {
  font-family: "Montserrat", sans-serif;
}

.hero-card h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-card h1 span {
  color: var(--yellow);
}

.hero-copy {
  margin: 18px 0 0;
  max-width: 560px;
  color: #d4e1f4;
  line-height: 1.65;
}

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

.cta-btn,
.ghost-btn,
.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 14px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cta-btn {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(255, 196, 0, 0.28);
}

.ghost-btn {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.showcase-grid {
  margin-top: 26px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.screen-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.screen-card h3 {
  margin: 0;
  font-size: 18px;
  color: var(--navy);
}

.screen-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.thumb {
  border-radius: 22px;
  padding: 14px;
  background: linear-gradient(180deg, #e9f1fc 0%, #f7faff 100%);
  border: 1px solid var(--line);
}

.thumb-phone {
  max-width: 190px;
  margin: 0 auto;
}

.device {
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

body.showcase .thumb {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.showcase .thumb-phone {
  width: 100%;
  max-width: 182px;
}

body.showcase .device {
  width: 100%;
  min-height: 0;
  height: 320px;
  border-radius: 28px;
  border: 8px solid #0f2240;
  box-shadow: 0 18px 34px rgba(0, 17, 42, 0.16);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

body.showcase .device::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  z-index: 2;
}

body.showcase .status-bar {
  padding: 20px 16px 8px;
  font-size: 11px;
}

body.showcase .screen-head {
  padding: 10px 16px 0;
}

body.showcase .screen-head h1,
body.showcase .screen-head h2 {
  margin: 10px 0 6px;
  font-size: 20px;
  line-height: 1.06;
}

body.showcase .screen-head p {
  font-size: 12px;
  line-height: 1.45;
}

body.showcase .eyebrow {
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
}

body.screen {
  background: var(--white);
}

.status-bar {
  padding: 14px 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.status-icons {
  display: flex;
  gap: 7px;
  align-items: center;
}

.status-icons span {
  display: block;
  border-radius: 999px;
  background: var(--navy);
}

.status-icons span:nth-child(1) {
  width: 14px;
  height: 8px;
  opacity: 0.55;
}

.status-icons span:nth-child(2) {
  width: 10px;
  height: 10px;
  opacity: 0.75;
}

.status-icons span:nth-child(3) {
  width: 22px;
  height: 10px;
}

.screen-head {
  padding: 14px 20px 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.screen-head h1,
.screen-head h2 {
  margin: 16px 0 8px;
  font-size: 30px;
  line-height: 1.02;
  color: var(--navy-deep);
  text-transform: uppercase;
}

.screen-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.brand-banner {
  margin-top: 20px;
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.brand-banner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0 22%, var(--yellow) 22% 56%, var(--blue) 56% 100%);
}

.brand-banner small {
  display: block;
  color: #bbd0ee;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 8px;
}

.brand-banner strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-banner span {
  display: block;
  margin-top: 8px;
  color: #d3def0;
  font-size: 13px;
  line-height: 1.55;
}

.content {
  padding: 20px;
}

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

.panel,
.list-card,
.input-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.panel {
  padding: 18px;
}

.section-title {
  margin: 0 0 12px;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.input-card {
  padding: 14px 16px;
}

.input-card span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.input-card strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.field-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.action-row {
  display: grid;
  gap: 10px;
}

.cta-btn.full,
.ghost-btn.full {
  width: 100%;
}

.ghost-btn.alt {
  color: var(--navy);
  border-color: rgba(0, 27, 64, 0.12);
  background: #f6f9ff;
}

.notice {
  padding: 14px 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(0, 140, 235, 0.16);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill,
.tab-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.pill {
  background: #eef5ff;
  color: var(--blue);
}

.tab-pill {
  background: #f3f6fb;
  color: var(--muted);
}

.tab-pill.active {
  background: var(--navy);
  color: var(--white);
}

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

.mini-stat {
  padding: 14px;
  border-radius: 18px;
  background: #f7faff;
  border: 1px solid rgba(0, 27, 64, 0.06);
}

.mini-stat span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.mini-stat strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  color: var(--navy);
  text-transform: uppercase;
}

.mini-stat em {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}

.mobile-title {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--navy);
}

.partner-card,
.lead-item,
.report-row,
.link-box {
  padding: 16px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.partner-card strong,
.lead-item strong,
.report-row strong,
.link-box strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
}

.partner-card span,
.lead-item span,
.report-row span,
.link-box span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.lead-item,
.report-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lead-meta,
.report-meta {
  flex: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f4f9ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.badge.gold {
  background: #fff8dd;
  color: #a77800;
}

.phone-footer {
  position: sticky;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 27, 64, 0.08);
  padding: 14px 20px 22px;
}

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

.nav-link {
  flex: 1;
  min-height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
  background: #f4f7fb;
}

.nav-link.active {
  background: var(--navy);
  color: var(--white);
}

.thank-you {
  padding: 26px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fffb 0%, #effbf4 100%);
  border: 1px solid rgba(35, 184, 103, 0.18);
  text-align: center;
}

.thank-you strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  color: #136d41;
  text-transform: uppercase;
}

.thank-you p {
  margin: 10px 0 0;
  font-size: 14px;
  color: #3d6f57;
  line-height: 1.6;
}

.showcase-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  color: var(--muted);
  line-height: 1.7;
}

@media (min-width: 760px) {
  body.screen {
    padding: 24px;
    background:
      radial-gradient(circle at top left, rgba(0, 140, 235, 0.18), transparent 28%),
      linear-gradient(180deg, #eef4fb 0%, #f8fbff 100%);
  }

  .device {
    min-height: calc(100vh - 48px);
    border-radius: 36px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.7);
  }
}
