:root {
  --bg: #fffaf4;
  --bg-soft: rgba(255, 248, 239, 0.92);
  --panel: rgba(255, 255, 255, 0.94);
  --panel-border: rgba(193, 118, 49, 0.16);
  --text: #172033;
  --muted: #556176;
  --primary: #f97316;
  --primary-dark: #c2410c;
  --secondary: #0369a1;
  --shadow: 0 24px 80px rgba(149, 103, 60, 0.12);
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-display: "Georgia", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(3, 105, 161, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #fff7ee 46%, #fff2e3 100%);
  color: var(--text);
  font-family: var(--font-sans);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(194, 120, 54, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 120, 54, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 92%);
  pointer-events: none;
}

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

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.hero,
.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 24px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0 32px;
}

.brand__logo {
  width: 180px;
  height: auto;
}

.topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

.topbar__links a:hover,
.topbar__links a:focus-visible {
  color: var(--text);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: stretch;
}

.hero__copy,
.hero__panel,
.info-card,
.gateway-card {
  backdrop-filter: blur(18px);
}

.hero__copy {
  padding: 40px;
  border: 1px solid var(--panel-border);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(255, 245, 233, 0.96));
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--secondary);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
.section-heading h2 {
  font-family: var(--font-display);
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.hero__lead {
  max-width: 60ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, var(--primary), #fb923c);
  color: #fff;
  box-shadow: 0 16px 38px rgba(249, 115, 22, 0.28);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(135deg, #fb923c, #fdba74);
}

.button--secondary {
  border: 1px solid rgba(3, 105, 161, 0.24);
  background: rgba(3, 105, 161, 0.06);
  color: var(--secondary);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(3, 105, 161, 0.45);
  background: rgba(3, 105, 161, 0.1);
}

.hero__facts {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.hero__facts li {
  position: relative;
  padding-left: 20px;
  line-height: 1.55;
}

.hero__facts li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.hero__panel {
  display: grid;
  gap: 18px;
}

.panel-card,
.info-card,
.gateway-card {
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.panel-card--accent {
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(255, 242, 225, 0.98)),
    linear-gradient(135deg, rgba(249, 115, 22, 0.12), transparent 40%);
}

.panel-card__label,
.gateway-card__tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-card h2,
.gateway-card h3,
.info-card h3 {
  font-size: 1.55rem;
}

.panel-card__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.panel-card__list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
}

.panel-card__list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #fdba74);
}


.panel-card p,
.gateway-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 0 0 72px;
}

.section--alt {
  padding-bottom: 96px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.info-card,
.gateway-card {
  padding: 28px;
}

.gateway-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gateway-card .button {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 1024px) {
  .hero__content,
  .grid--three,
  .grid--two {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .hero,
  .section {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 24px;
  }

  .hero {
    padding-bottom: 56px;
  }

  .hero__copy,
  .panel-card,
  .info-card,
  .gateway-card {
    padding: 22px;
    border-radius: 24px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .gateway-card .button {
    width: 100%;
    align-self: stretch;
  }
}
