:root {
  --bg: #f7f1e6;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --ink: #1d2940;
  --muted: #5b6780;
  --line: rgba(29, 41, 64, 0.12);
  --brand: #f15a24;
  --brand-2: #2d6cdf;
  --brand-3: #12b7b0;
  --gold: #ffd166;
  --shadow: 0 18px 40px rgba(29, 41, 64, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1000px 520px at 100% 0%, rgba(241, 90, 36, 0.14), transparent 58%),
    radial-gradient(900px 460px at 0% 0%, rgba(255, 209, 102, 0.2), transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
}

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

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

.page {
  width: min(1360px, calc(100% - 32px));
  margin: 16px auto 32px;
}

.shell {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
}

.brand-row {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 136px;
  height: 64px;
  object-fit: cover;
  object-position: left;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  color: var(--brand-2);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.nav a {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.nav a.cta {
  background: var(--brand);
  color: #fff;
}

.hero-wrap {
  padding: 28px 32px 32px;
}

.hero {
  position: relative;
  min-height: 760px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(29, 41, 64, 0.18);
  background: #d9d9d9;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 30, 62, 0.82) 0%, rgba(13, 30, 62, 0.56) 34%, rgba(13, 30, 62, 0.16) 65%, rgba(13, 30, 62, 0.08) 100%),
    linear-gradient(180deg, rgba(13, 30, 62, 0.36), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  min-height: 760px;
  padding: 36px 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d9e8ff;
}

.hero h1 {
  margin: 16px 0 0;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero p.lead {
  margin: 22px 0 0;
  max-width: 720px;
  font-size: 22px;
  line-height: 1.6;
  color: #eef5ff;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 26px;
  font-size: 16px;
  font-weight: 700;
}

.button.primary {
  background: var(--gold);
  color: #1b2440;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(8px);
}

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

.hero-stats article {
  padding: 18px 18px 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-stats small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d9e8ff;
}

.hero-stats strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.2;
}

.grid-two {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  margin-top: 24px;
}

.panel {
  background: var(--surface);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px 30px;
}

.panel.soft {
  background: linear-gradient(180deg, #ffffff, rgba(244, 248, 255, 0.96));
}

.section-label {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label.blue {
  color: var(--brand-2);
}

.panel h2,
.section h2 {
  margin: 12px 0 0;
  font-size: 42px;
  line-height: 1.08;
}

.panel p,
.section p,
.panel li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.login-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.9), #ffffff);
}

.contact-meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.map {
  width: 100%;
  height: 270px;
  margin-top: 20px;
  border: 0;
  border-radius: 24px;
}

.section {
  margin-top: 24px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card-stack,
.card-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  padding: 22px;
}

.card h3 {
  margin: 0;
  font-size: 24px;
}

.card p {
  margin: 10px 0 0;
  font-size: 16px;
}

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

.steps p {
  margin: 0 0 14px;
}

.footer-note {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  padding: 20px 22px;
}

.signup-shell {
  padding: 28px 32px 32px;
}

.signup-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
}

.brand-side {
  border-radius: 28px;
  background: linear-gradient(135deg, #ffd166 0%, #f15a24 42%, #2d6cdf 100%);
  padding: 30px;
  color: #fff;
}

.brand-side h1 {
  margin: 14px 0 0;
  font-size: 48px;
  line-height: 1.08;
}

.brand-side p,
.brand-side li {
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  line-height: 1.8;
}

.checklist {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.check {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  padding: 18px;
}

.check strong {
  display: block;
  font-size: 20px;
}

.notice {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 236, 0.55);
  padding: 20px 22px;
  margin-top: 22px;
}

.back-link {
  display: inline-flex;
  margin-top: 24px;
}

@media (max-width: 1180px) {
  .topbar,
  .hero-wrap,
  .signup-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-copy span {
    white-space: normal;
  }

  .nav {
    flex-wrap: wrap;
  }

  .grid-two,
  .section-grid,
  .signup-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .page {
    width: min(100% - 20px, 1360px);
  }

  .hero-wrap,
  .signup-shell {
    padding: 20px;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .hero-content {
    padding: 28px 24px 30px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero p.lead {
    font-size: 18px;
  }

  .hero-stats,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .panel,
  .brand-side {
    padding: 24px;
  }

  .panel h2,
  .section h2,
  .brand-side h1 {
    font-size: 34px;
  }
}
