:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --surface: #ffffff;
  --surface-strong: #f1f5f9;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --brand: #1e3a8a;
  /* Navy 800 */
  --brand-strong: #1e40af;
  /* Navy 900 */
  --accent: #fbbf24;
  /* Amber 400 */
  --accent-strong: #f59e0b;
  /* Amber 500 */
  --ok: #10b981;
  --warn: #f59e0b;
  --danger: #ef4444;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-1: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-2: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.6;
}

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

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

h1,
h2,
h3,
h4,
.brand-name {
  margin: 0;
  line-height: 1.16;
  letter-spacing: -0.02em;
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 12px;
  width: auto;
  height: auto;
  z-index: 100;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 10px 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brand);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.nav-shell,
.shell {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 0;
}

.brand {
  color: #fff;
  font-weight: 700;
  font-size: 1.12rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2dd4bf, #f97316);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.16);
}

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

.nav-link {
  color: rgba(239, 245, 252, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.page {
  width: min(1120px, calc(100vw - 40px));
  margin: 26px auto 0;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.breadcrumb span.current {
  color: var(--text);
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(244, 250, 255, 0.96));
  border: 1px solid rgba(212, 225, 236, 0.9);
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-lg);
  padding: 44px;
  overflow: hidden;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

/* Brand Logos & Blog Sections */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.store-link {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) opacity(0.5);
  transition: all 0.3s ease;
}

.store-link:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-2px);
}

.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

.blog-card div:first-child {
  transition: opacity 0.3s ease;
}

.blog-card:hover div:first-child {
  opacity: 0.9;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -40px -90px auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.2), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 14px;
}

.hero h1,
.page-title {
  font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
  margin-bottom: 14px;
}

@media (max-width: 640px) {

  .hero h1,
  .page-title {
    font-size: 2rem;
  }
}

.page-title {
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.04rem;
}

.hero .lead {
  margin-bottom: 24px;
}

.hero-media {
  position: relative;
  align-self: stretch;
  background: linear-gradient(160deg, rgba(17, 36, 59, 0.05), rgba(17, 36, 59, 0.01));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) - 6px);
  padding: 14px;
}

.hero-media img {
  border-radius: calc(var(--radius-lg) - 12px);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 11px;
  padding: 11px 16px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: var(--brand-strong);
}

.btn-accent {
  color: var(--text);
  background: var(--accent);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-accent:hover {
  background: var(--accent-strong);
}

.btn-light {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}

.btn-light:hover {
  border-color: #b7cad9;
  background: var(--bg-soft);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.metric strong {
  display: block;
  font-size: 1.35rem;
  color: var(--text);
}

.section {
  margin-top: 28px;
}

.section-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  padding: 30px;
}

.section-head {
  margin-bottom: 20px;
}

.section-head h2 {
  font-size: clamp(1.45rem, 2vw + 0.6rem, 2rem);
  margin-bottom: 8px;
}

.section-head p {
  color: var(--muted);
}

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

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
}

.card h3,
.card h4 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 0.94rem;
}

.card img,
.thumb {
  border-radius: 11px;
  border: 1px solid var(--line);
  margin-bottom: 12px;
  width: 100%;
}

.link-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.link-card:hover {
  text-decoration: none;
}

.link-card:hover .card {
  border-color: #9fb8ca;
  transform: translateY(-2px);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid #b8d4ea;
  color: #155e75;
  background: #f0f9ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  margin-bottom: 12px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  background: #fff;
}

.inline-list {
  margin: 0;
  padding-left: 18px;
}

.inline-list li {
  margin: 6px 0;
}

.notice {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 14px 16px;
  font-size: 0.92rem;
  color: var(--text);
}

.notice p {
  color: inherit;
}

.notice strong {
  color: inherit;
}

.notice-info {
  background: #f0f9ff;
  border-color: #b8d4ea;
}

.notice-warn {
  background: #fffbeb;
  border-color: #f3d6a3;
  color: #8a4b07;
}

.notice-danger {
  background: #fef2f2;
  border-color: #f7c7c7;
  color: #9f1239;
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: auto;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

th,
td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid #e8eef4;
  font-size: 0.9rem;
}

th {
  background: #f6fbff;
  color: #1f3a56;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background: #fbfdff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.83rem;
  font-weight: 700;
  color: #1e3650;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid #c8d6e3;
  background: #fff;
  color: var(--text);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #4db6ad;
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.16);
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.radio-grid label {
  border: 1px solid #c8d6e3;
  border-radius: 10px;
  padding: 9px 10px;
  text-align: center;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
}

.radio-grid label:has(input:checked) {
  border-color: #4db6ad;
  background: #f0fdfa;
  color: #115e59;
}

.radio-grid input {
  display: none;
}

.faq-group {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font: inherit;
  font-weight: 700;
  padding: 14px;
  cursor: pointer;
}

.faq-trigger span {
  color: var(--muted);
  transition: transform 0.15s ease;
}

.faq-answer {
  display: none;
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-trigger span {
  transform: rotate(180deg);
}

.timeline {
  border-left: 2px solid #b6cadb;
  margin-left: 10px;
  padding-left: 16px;
  display: grid;
  gap: 14px;
}

.timeline-step {
  position: relative;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.14);
}

.timeline-step h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.timeline-step p {
  color: var(--muted);
  font-size: 0.93rem;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.dot.ok {
  background: #10b981;
}

.dot.warn {
  background: #f59e0b;
}

.dot.err {
  background: #ef4444;
}

.dot.unk {
  background: #94a3b8;
}

.footer {
  margin-top: 50px;
  padding: 40px 0 50px;
  background: var(--brand);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer p {
  font-size: 0.82rem;
}

.footer a {
  color: #e7f4ff;
  font-size: 0.82rem;
  margin-right: 12px;
}

.text-mono {
  font-family: "IBM Plex Mono", "Consolas", monospace;
}

.text-small {
  font-size: 0.85rem;
  color: var(--muted);
}

.center {
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.55s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.08s;
}

.reveal.delay-2 {
  animation-delay: 0.16s;
}

.reveal.delay-3 {
  animation-delay: 0.24s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 640px) {
  .flex-between {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .hero-media {
    min-height: 260px;
  }

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

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

@media (max-width: 780px) {

  .nav-shell,
  .shell,
  .page {
    width: calc(100vw - 26px);
  }

  .hero {
    padding: 20px;
    border-radius: 16px;
  }

  .section-card {
    padding: 20px;
    border-radius: 16px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

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

  .actions {
    width: 100%;
  }

  .actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}