:root {
  --bg: #FFFFFF;
  --panel: #FFFFFF;
  --muted: #F5F3FA;
  --text: #000000;
  --secondary: #3F3A4A;
  --accent: #1D2A50;
  --accent-2: #CBC1E2;
  --cta: #E99A3B;
  --cta-hover: #B86F19;
  --border: #CBC1E2;
  --shadow: 0 10px 40px rgba(29, 42, 80, 0.12);
  --radius: 18px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 4px);
}

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

h1,
h2,
h3 {
  margin: 0 0 0.4em;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 600;
}

p {
  margin: 0 0 1em;
  color: var(--secondary);
  font-weight: 400;
}

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.container.wide {
  width: min(1280px, 96vw);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(29, 42, 80, 0.25);
}

img.brand__mark {
  width: auto;
  height: 40px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.brand__text {
  font-size: 18px;
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
}

.nav a {
  padding: 10px 12px;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
  background: rgba(29, 42, 80, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--cta);
  color: #ffffff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(233, 154, 59, 0.3);
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--cta-hover);
  box-shadow: 0 12px 32px rgba(184, 111, 25, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

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

.hero__grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}

.hero__copy h1 {
  font-size: clamp(32px, 4vw, 46px);
}

.hero__copy .lede {
  font-size: 18px;
  color: var(--secondary);
}

.hero__bullets {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
  color: var(--secondary);
}

.hero__bullets li {
  padding-left: 18px;
  position: relative;
}

.hero__bullets li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
}

.hero__media {
  display: grid;
  justify-items: center;
}

.media-card {
  position: relative;
  width: min(520px, 100%);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.media-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.media-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 12px;
  text-align: right;
  box-shadow: 0 8px 24px rgba(29, 42, 80, 0.25);
}

.media-card__badge small {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.media-card__label {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 100%);
  font-weight: 600;
  color: var(--text);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 8px;
  font-weight: 700;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cta);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 64px 0;
}

.section--muted {
  background: var(--muted);
  border-block: 1px solid var(--border);
}

.section__header {
  max-width: 760px;
  margin-bottom: 32px;
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr;
}

.card__media {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.card__body {
  padding: 18px;
}

.card__body ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  color: var(--secondary);
  display: grid;
  gap: 6px;
}

.builds-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.build {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.build__media {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.build__ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--cta);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(233, 154, 59, 0.35);
}

.build__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(29, 42, 80, 0.25);
}

.build__body {
  padding: 16px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--secondary);
  font-size: 14px;
}

.meta span {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(29, 42, 80, 0.08);
  border: 1px solid rgba(29, 42, 80, 0.2);
  color: var(--accent);
}

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
}

.process li {
  background: var(--panel);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(29, 42, 80, 0.2);
  background: rgba(29, 42, 80, 0.08);
  color: var(--accent);
}

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}

.gallery {
  display: grid;
  gap: 12px;
}

.gallery__item img {
  height: 200px;
  object-fit: cover;
}

.cta-block h2 {
  margin-bottom: 8px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.stat {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: left;
  box-shadow: var(--shadow);
}

.stat__value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat__label {
  color: var(--secondary);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

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

.contact {
  background: linear-gradient(135deg, rgba(29, 42, 80, 0.06), rgba(203, 193, 226, 0.18));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.form {
  display: grid;
  gap: 12px;
  background: var(--panel);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29, 42, 80, 0.1);
}

textarea {
  resize: vertical;
}

.form__note {
  color: var(--secondary);
  margin: 0;
  font-size: 14px;
}

.footer {
  padding: 32px 0 40px;
  background: var(--muted);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer__links {
  display: grid;
  gap: 6px;
  color: var(--secondary);
}

.footer__meta {
  color: var(--secondary);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer__social a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  background: #ffffff;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer__social a:hover {
  color: var(--cta-hover);
  border-color: var(--cta);
  transform: translateY(-1px);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.brand--footer .brand__mark {
  width: 34px;
  height: 34px;
}

.brand--footer img.brand__mark {
  width: auto;
  height: 32px;
}

.small {
  font-size: 14px;
  color: var(--secondary);
}

@media (max-width: 640px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 56px;
  }
}

