
:root {
  --bg: #020617;
  --card-bg: #020617;
  --accent: #22d3ee;
  --accent-soft: rgba(34, 211, 238, 0.12);
  --accent-strong: rgba(34, 211, 238, 0.4);
  --accent-warm: #f97316;
  --text-main: #e5f5ff;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --radius-lg: 22px;
  --shadow-soft: 0 22px 55px rgba(0, 0, 0, 0.85);
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(34, 211, 238, 0.23), transparent 55%),
    radial-gradient(circle at bottom, rgba(15, 23, 42, 0.96), #020617);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

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

.top-strip {
  width: 100%;
  padding: 0.4rem 6vw;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: radial-gradient(circle at top, rgba(34, 211, 238, 0.18), rgba(15, 23, 42, 0.98));
  color: #e0f2fe;
  border-bottom: 1px solid rgba(34, 211, 238, 0.5);
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 6vw;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.82), transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.9), transparent 55%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.7), #020617);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  color: #020617;
  box-shadow:
    0 0 20px rgba(34, 211, 238, 0.95),
    0 0 46px rgba(34, 211, 238, 0.78);
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.logo-main {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(to right, #e0f2fe, #22d3ee);
  -webkit-background-clip: text;
  color: transparent;
}

.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.lang-toggle {
  margin-top: 0.15rem;
  padding: 0.15rem 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  color: #e5f5ff;
  cursor: pointer;
  transition: all 0.16s ease-out;
}

.lang-toggle:hover {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-muted);
  padding-bottom: 0.1rem;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: #e5f5ff;
  border-color: var(--accent);
}

.nav-cta {
  display: flex;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease-out;
  white-space: nowrap;
}

.btn-solid {
  background: radial-gradient(circle at top left, #22d3ee, #38bdf8);
  color: #020617;
  box-shadow:
    0 0 26px rgba(34, 211, 238, 0.96),
    0 18px 40px rgba(8, 47, 73, 1);
}

.btn-solid:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 34px rgba(34, 211, 238, 1),
    0 22px 48px rgba(15, 23, 42, 1);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.9);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(15, 23, 42, 1);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.45);
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.55);
}

.btn-ghost:hover {
  border-color: rgba(226, 232, 240, 0.9);
  background: rgba(15, 23, 42, 0.95);
}

main {
  padding: 1.7rem 6vw 4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  margin-top: 1.9rem;
  margin-bottom: 3.4rem;
  align-items: center;
}

.hero-media {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.hero-media video {
  width: 100%;
  height: auto;
  border-radius: 22px;
  display: block;
  box-shadow: var(--shadow-soft);
}


.hero-content h1 {
  font-size: clamp(2.5rem, 3.25vw, 3.25rem);
  margin: 0.2rem 0 0.8rem;
}

.hero-text {
  max-width: 40rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.35rem;
  margin-bottom: 1.25rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.76rem;
}

.hero-badges span {
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.58);
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.4), transparent 55%),
    rgba(15, 23, 42, 0.98);
  color: var(--text-muted);
}

/* Hero robot card + animation */
.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
}

.hero-robot-card {
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.45), rgba(15, 23, 42, 1));
  border-radius: 22px;
  padding: 1rem 1rem 0.9rem;
  border: 1px solid rgba(34, 211, 238, 0.82);
  box-shadow: var(--shadow-soft);
}

.hero-robot-svg {
  width: 100%;
  display: block;
  border-radius: 18px;
}

/* Build stages: fade/slide in like it's constructing */
.frame-part {
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation-fill-mode: forwards;
}

.frame-floor {
  animation: floorIn 5s infinite;
}

.frame-walls {
  animation: wallsIn 5s infinite;
}

.frame-roof {
  animation: roofIn 5s infinite;
}

.frame-details {
  animation: detailsIn 5s infinite;
}

@keyframes floorIn {
  0% { opacity: 0; transform: translateY(12px); }
  10% { opacity: 1; transform: translateY(0); }
  60% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes wallsIn {
  0% { opacity: 0; transform: translateY(16px); }
  10% { opacity: 0; }
  20% { opacity: 1; transform: translateY(0); }
  65% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes roofIn {
  0% { opacity: 0; transform: translateY(-10px); }
  20% { opacity: 0; }
  30% { opacity: 1; transform: translateY(0); }
  70% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes detailsIn {
  0% { opacity: 0; transform: scale(0.9); }
  30% { opacity: 0; }
  40% { opacity: 1; transform: scale(1); }
  75% { opacity: 1; }
  100% { opacity: 0; }
}


/* Sparks near roof when hammer hits */
.build-sparks {
  opacity: 0;
  animation: sparksLoop 5s infinite;
}

@keyframes sparksLoop {
  0%, 24% { opacity: 0; transform: scale(0.8); }
  25% { opacity: 1; transform: scale(1); }
  27% { opacity: 0; transform: scale(1.1); }
  39% { opacity: 0; }
  40% { opacity: 1; transform: scale(1); }
  42% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; }
}

.hero-robot-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.55rem;
}

.hero-info {
  background: radial-gradient(circle at bottom right, rgba(15, 23, 42, 1), #020617);
  border-radius: 18px;
  padding: 1.4rem 1.25rem 1.2rem;
  border: 1px solid var(--border-subtle);
}

.hero-info h2 {
  font-size: 1.1rem;
  margin-top: 0;
}

.hero-info ul {
  list-style: none;
  padding-left: 0;
  margin: 0.9rem 0 1.1rem;
  font-size: 0.9rem;
}

.hero-info li {
  margin-bottom: 0.45rem;
}

.hero-info strong {
  color: #e5f5ff;
}

.panel-note {
  font-size: 0.83rem;
  color: var(--text-muted);
  border-top: 1px dashed rgba(148, 163, 184, 0.55);
  padding-top: 0.75rem;
}

.section {
  margin-bottom: 3.4rem;
}

.section-alt {
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.2), rgba(15, 23, 42, 0.98));
  border-radius: 24px;
  padding: 2.4rem 2rem;
  border: 1px solid rgba(34, 211, 238, 0.52);
  box-shadow: var(--shadow-soft);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0;
  font-size: 1.6rem;
}

.section-header p {
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.card {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 1));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 1.5rem 1.3rem 1.3rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.45), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease-out;
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.card p {
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card li {
  margin-bottom: 0.27rem;
  position: relative;
  padding-left: 0.9rem;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  background: rgba(15, 23, 42, 0.98);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

.gallery-card img {
  width: 100%;
  display: block;
  background: radial-gradient(circle at top, rgba(34, 211, 238, 0.3), transparent 60%);
}

.gallery-text {
  padding: 1rem 1rem 0.9rem;
}

.gallery-text h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.gallery-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.steps {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.45rem;
  margin: 0;
}

.steps li {
  background: rgba(2, 6, 23, 0.98);
  border-radius: 18px;
  padding: 1.15rem 1.1rem 1.05rem;
  border: 1px solid rgba(148, 163, 184, 0.65);
  font-size: 0.9rem;
}

.steps h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  color: #e5f5ff;
}

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

.section-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.section-layout p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.section-layout .muted {
  font-size: 0.86rem;
}

.about-aside {
  background:
    radial-gradient(circle at top, rgba(34, 211, 238, 0.22), rgba(15, 23, 42, 0.98));
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(34, 211, 238, 0.7);
  box-shadow: var(--shadow-soft);
}

.about-aside h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.about-aside ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-aside li {
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 0.9rem;
}

.about-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #22d3ee, #38bdf8);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.96);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form {
  background: rgba(2, 6, 23, 0.99);
  border-radius: 18px;
  padding: 1.7rem 1.45rem;
  border: 1px solid rgba(148, 163, 184, 0.78);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.95rem;
}

label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

input,
select,
textarea {
  border-radius: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.98);
  padding: 0.6rem 0.8rem;
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out, background 0.16s ease-out;
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.85);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.8);
  background: rgba(15, 23, 42, 1);
}

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

.form-submit {
  width: 100%;
  margin-top: 0.6rem;
}

.form-note {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-info {
  font-size: 0.94rem;
}

.contact-info h3 {
  margin-top: 0;
}

.contact-info p {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}

.contact-info a {
  color: var(--accent);
}

.muted {
  color: var(--text-muted);
}

.footer {
  padding: 1.9rem 6vw 2.1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.98);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  background:
    radial-gradient(circle at bottom, rgba(15, 23, 42, 1), #020617);
}

.footer-sub {
  margin-top: 0.35rem;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }
}

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

  .hero-visual {
    order: -1;
  }

  .section-layout,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-alt {
    padding: 2.2rem 1.7rem;
  }
}

@media (max-width: 820px) {
  .top-bar {
    flex-wrap: wrap;
    gap: 0.9rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  main {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .footer {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .top-strip {
    padding-inline: 1.2rem;
  }

  .top-bar {
    padding-inline: 1.2rem;
  }
}





/* House build stages now stay visible after they appear */
.frame-floor {
  animation: floorIn 7s infinite;
}
.frame-walls {
  animation: wallsIn 7s infinite;
}
.frame-roof {
  animation: roofIn 7s infinite;
}
.frame-details {
  animation: detailsIn 7s infinite;
}

@keyframes floorIn {
  0% { opacity: 0; transform: translateY(12px); }
  10% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; }
}

@keyframes wallsIn {
  0% { opacity: 0; transform: translateY(16px); }
  15% { opacity: 0; }
  25% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; }
}

@keyframes roofIn {
  0% { opacity: 0; transform: translateY(-10px); }
  25% { opacity: 0; }
  35% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; }
}

@keyframes detailsIn {
  0% { opacity: 0; transform: scale(0.9); }
  35% { opacity: 0; }
  45% { opacity: 1; transform: scale(1); }
  100% { opacity: 1; }
}

/* Builder bot: moves around the house then over to the trailer */
.builder-bot {
  transform-origin: center;
  animation: robotPath 8s infinite;
}

.builder-bot-rig {
  transform-box: fill-box;
  transform-origin: center;
}

/* Hammer swing */
.bot-arm {
  transform-origin: 32px 24px;
  animation: hammerLoop 1.2s infinite;
}

@keyframes hammerLoop {
  0%   { transform: translate(20px,24px) rotate(-10deg); }
  40%  { transform: translate(20px,24px) rotate(-32deg); }
  70%  { transform: translate(20px,24px) rotate(-5deg); }
  100% { transform: translate(20px,24px) rotate(-10deg); }
}

/* Robot path: ground -> center -> roof -> over to trailer */
@keyframes robotPath {
  /* Start: front-left of house at ground level */
  0%   { transform: translate(-40px, 15px); }
  20%  { transform: translate(-20px, 15px); }

  /* Move toward center front */
  35%  { transform: translate(0px, 10px); }

  /* Up near roofline (middle of house) */
  55%  { transform: translate(10px, -25px); }

  /* Final roof pose briefly */
  65%  { transform: translate(10px, -40px); }

  /* Transition off to the trailer on the right side */
  85%  { transform: translate(120px, 5px); }

  /* Working along trailer siding */
  100% { transform: translate(130px, 5px); }
}

/* Trailer scene: fades in after house is built */
.trailer-scene {
  opacity: 0;
  animation: trailerIn 8s infinite;
}

@keyframes trailerIn {
  0%   { opacity: 0; }
  55%  { opacity: 0; }
  70%  { opacity: 1; }
  100% { opacity: 1; }
}

/* Highlight siding panel: subtle pulsing glow to imply replacement */
.trailer-panel {
  animation: panelGlow 1.4s infinite alternate;
}

@keyframes panelGlow {
  0%   { fill: rgba(34,211,238,0.18); }
  100% { fill: rgba(34,211,238,0.5); }
}


/* Re-define build stage animations so they appear and stay */
.frame-floor {
  animation: floorIn 6s infinite;
}
.frame-walls {
  animation: wallsIn 6s infinite;
}
.frame-roof {
  animation: roofIn 6s infinite;
}
.frame-details {
  animation: detailsIn 6s infinite;
}

@keyframes floorIn {
  0% { opacity: 0; transform: translateY(10px); }
  10% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; }
}

@keyframes wallsIn {
  0% { opacity: 0; transform: translateY(14px); }
  15% { opacity: 0; }
  25% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; }
}

@keyframes roofIn {
  0% { opacity: 0; transform: translateY(-8px); }
  25% { opacity: 0; }
  35% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; }
}

@keyframes detailsIn {
  0% { opacity: 0; transform: scale(0.95); }
  35% { opacity: 0; }
  45% { opacity: 1; transform: scale(1); }
  100% { opacity: 1; }
}

/* Two-bot setup: subtle idle bounce + arm animations */

.builder-bot-house,
.builder-bot-trailer {
  animation: botIdle 2.6s infinite ease-in-out;
}

@keyframes botIdle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* House bot hammer */
.bot-arm-house {
  transform-origin: 10px 16px;
  animation: hammerHouse 1s infinite;
}

@keyframes hammerHouse {
  0%   { transform: translate(10px,16px) rotate(-5deg); }
  40%  { transform: translate(10px,16px) rotate(-25deg); }
  80%  { transform: translate(10px,16px) rotate(-5deg); }
  100% { transform: translate(10px,16px) rotate(-5deg); }
}

/* Trailer bot clamp motion */
.bot-arm-trailer {
  transform-origin: -12px 16px;
  animation: clampTrailer 1.2s infinite;
}

@keyframes clampTrailer {
  0%   { transform: translate(-10px,16px) rotate(0deg); }
  50%  { transform: translate(-10px,16px) rotate(-10deg); }
  100% { transform: translate(-10px,16px) rotate(0deg); }
}

/* Trailer panel glow */
.trailer-panel {
  animation: panelGlowNew 1.4s infinite alternate;
}

@keyframes panelGlowNew {
  0%   { fill: rgba(34,211,238,0.18); }
  100% { fill: rgba(34,211,238,0.5); }
}


/* Global Alaska forest background */
body {
  position: relative;
  min-height: 100vh;
  background: #020617;
  color: #e5f4ff;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,23,42,0.9), rgba(15,23,42,0.85)),
    url("./assets/bg-alaska.jpg") center center / cover no-repeat;
  z-index: -2;
}

/* Slight dark panel effect behind page content so text stays readable */
.page-shell,
.main-shell,
.site-shell {
  background: radial-gradient(circle at top, rgba(15,23,42,0.92), rgba(15,23,42,0.98));
}


/* Licensed Bonded Insured banner */
.lbi-banner {
  margin-top: 4px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #b9e8ff;
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* Brighten overall look */
body::before {
  background:
    linear-gradient(to bottom, rgba(15,23,42,0.6), rgba(15,23,42,0.55)),
    url("./assets/bg-alaska.jpg") center center / cover no-repeat !important;
}

/* Brightened Alaska background overlay and stronger content contrast */
body::before {
  background:
    linear-gradient(to bottom, rgba(10,18,30,0.35), rgba(10,18,30,0.3)),
    url("./assets/bg-alaska.jpg") center center / cover no-repeat !important;
}
main, .section, .section-shell, .content-shell {
  background: rgba(2,12,23,0.84);
  backdrop-filter: blur(1.5px);
}
h1, h2, h3 {
  color: #7ee8ff !important;
}
p, li {
  color: #eaf7ff !important;
}


.brand-logo-svg {
  width: 40px;
  height: 40px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(56,189,248,0.8));
}
