:root {
  color-scheme: light;
  --ink: #12202f;
  --muted: #60717d;
  --line: #dce8ee;
  --soft: #eff7fa;
  --paper: #ffffff;
  --blue: #2377e7;
  --blue-strong: #165fc4;
  --teal: #13c9c9;
  --amber: #ffc65a;
  --green: #20b970;
  --shadow: 0 24px 70px rgba(18, 32, 47, 0.14);
  --radius: 8px;
  --container: 1320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7fbfc;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 232, 238, 0.82);
  background: rgba(247, 251, 252, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--container), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 650;
  color: #405464;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--blue-strong);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 12px 28px rgba(20, 122, 222, 0.24);
}

.btn-secondary {
  color: #143046;
  background: white;
  border-color: var(--line);
}

.btn-dark {
  color: white;
  background: #14283a;
}

.btn-muted {
  color: #758592;
  background: #eef4f7;
  border-color: #d9e5eb;
  cursor: not-allowed;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  padding: 0;
  display: grid;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 38%),
    linear-gradient(145deg, #1f72e8 0%, #2f86f6 48%, #0bbfc7 100%);
}

.hero-inner,
.section-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.hero-panel {
  position: relative;
  overflow: visible;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--amber);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 720px;
  color: white;
  font-size: clamp(44px, 5.7vw, 78px);
  font-weight: 900;
}

.hero-copy {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  border-radius: 8px;
  filter: drop-shadow(0 32px 54px rgba(9, 30, 51, 0.25));
}

.section {
  padding: 76px 0;
}

.section-alt {
  background: white;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
}

.section-copy {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: white;
  box-shadow: 0 12px 28px rgba(18, 32, 47, 0.06);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 9px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.icon-dot {
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #0b5164;
  background: #daf8f8;
  font-weight: 900;
}

.answer-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

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

.answer-list li {
  border-left: 4px solid var(--teal);
  padding: 12px 0 12px 16px;
  color: #415564;
  background: linear-gradient(90deg, rgba(19, 201, 201, 0.10), transparent);
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: center;
  border-radius: 8px;
  padding: 30px;
  color: white;
  background: linear-gradient(135deg, #102a42, #1d4962);
  box-shadow: var(--shadow);
}

.download-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.download-box {
  border-radius: 8px;
  padding: 20px;
  color: var(--ink);
  background: white;
}

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

.page-hero {
  padding: 68px 0 46px;
  background: linear-gradient(135deg, #eaf7fb, #f8fbfc);
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(36px, 5vw, 58px);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.content {
  max-width: 860px;
}

.content h2 {
  margin-top: 38px;
  font-size: 30px;
}

.content h3 {
  margin-top: 28px;
  font-size: 22px;
}

.content p,
.content li {
  color: #4f6270;
}

.content a {
  color: var(--blue-strong);
  font-weight: 750;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.steps li {
  counter-increment: steps;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 18px 58px;
  background: white;
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: white;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin-bottom: 0;
  color: var(--muted);
}

.coffee-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: center;
  border: 1px solid #f1dba8;
  border-radius: 8px;
  padding: 26px;
  background: linear-gradient(135deg, #fff8e8, #f7fcfd);
}

.coffee-cups {
  display: grid;
  gap: 10px;
}

.coffee-cups span {
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  padding: 12px 14px;
  background: white;
  color: #5d5140;
  font-weight: 800;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: #112333;
  color: white;
}

.footer-grid {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a {
  text-decoration: none;
}

.small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

@media (max-width: 920px) {
  .nav {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid,
  .answer-band,
  .download-panel,
  .coffee-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 48px 0 52px;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 36px 0 42px;
  }

  h1 {
    font-size: 38px;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .section {
    padding: 52px 0;
  }
}
