/* ── Reset & Base ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #080A0F;
  color: #E8EAF0;
  min-height: 100vh;
}

/* ── Nav ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
  border-bottom: 1px solid #1E2330;
  background-color: #080A0F;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: #E8EAF0;
  letter-spacing: 0.01em;
}

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5A6070;
  text-decoration: none;
  transition: color 0.2s ease;
}

nav ul a:hover,
nav ul a.active {
  color: #E8EAF0;
}

/* ── Hero ── */
.hero {
  max-width: 1050px;
  margin: 0 auto;
  padding: 80px 48px;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.hero-text {
  position: relative;
  z-index: 3;
  max-width: 620px;
  margin-right: 280px;
}

.hero-lamp {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: linear-gradient(
    to right,
    black 0%,
    black 30%,
    rgba(0,0,0,0.6) 55%,
    rgba(0,0,0,0.2) 75%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    black 0%,
    black 30%,
    rgba(0,0,0,0.6) 55%,
    rgba(0,0,0,0.2) 75%,
    transparent 100%
  );
}

.lamp-img {
  width: 100%;
  display: block;
  opacity: 0.92;
  mix-blend-mode: screen;
}

/* Glow — lives on the hero so it can arc freely across the full width */
.hero::after {
  content: '';
  position: absolute;
  /* Anchor near the lamp bulb: right side, vertically centered */
  right: 260px;
  top: 55%;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(255, 245, 190, 0.20) 0%,
    rgba(220, 225, 255, 0.13) 18%,
    rgba(108, 142, 245, 0.08) 38%,
    rgba(108, 142, 245, 0.03) 58%,
    transparent 72%
  );
  transform: translate(50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6C8EF5;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #E8EAF0;
  margin-bottom: 28px;
  text-shadow:
    0 0 60px rgba(200, 215, 255, 0.22),
    0 0 120px rgba(150, 180, 255, 0.1);
}

.hero p {
  font-size: 17px;
  font-weight: 300;
  color: #5A6070;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 0;
}

/* ── CTA Link-style Button ── */
.cta-button {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #E8EAF0;
  text-decoration: none;
  border-bottom: 1px solid #6C8EF5;
  padding-bottom: 3px;
  letter-spacing: 0.07em;
  transition: color 0.2s ease;
}

.cta-button:hover {
  color: #6C8EF5;
}

/* ── Section Divider ── */
.section-divider {
  border: none;
  border-top: 1px solid #1E2330;
  margin: 0 48px;
}

/* ── Tier Cards ── */
.tiers {
  max-width: 1050px;
  margin: 0 auto;
  padding: 72px 48px 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tier-card {
  border: 1px solid #1E2330;
  border-radius: 4px;
  padding: 40px 36px;
}

.tier-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6C8EF5;
  margin-bottom: 16px;
}

.tier-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: #E8EAF0;
  margin-bottom: 12px;
}

.tier-card p {
  font-size: 13px;
  font-weight: 300;
  color: #5A6070;
  line-height: 1.75;
}

/* ── About ── */
.about {
  border-top: 1px solid #1E2330;
  padding: 80px 48px 100px;
  text-align: center;
}

.about-inner {
  max-width: 620px;
  margin: 0 auto;
}

.about-inner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: #E8EAF0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-inner p {
  font-size: 16px;
  font-weight: 300;
  color: #5A6070;
  line-height: 1.85;
}

/* ── Inner Page Hero ── */
.page-hero {
  max-width: 700px;
  margin: 0 auto;
  padding: 90px 48px 60px;
}

.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: #E8EAF0;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 16px;
  font-weight: 300;
  color: #5A6070;
  line-height: 1.75;
}

/* ── Services Grid ── */
.services-grid {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 48px 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  border: 1px solid #1E2330;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.service-card:hover {
  border-color: #6C8EF5;
}

.service-icon {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.85);
}

.service-card-body {
  padding: 28px 28px 32px;
}

.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  font-weight: 400;
  color: #E8EAF0;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  font-weight: 300;
  color: #5A6070;
  line-height: 1.75;
}

/* ── Services CTA Row ── */
.cta-row {
  text-align: center;
  padding: 20px 48px 100px;
}

/* ── Contact Form ── */
.contact-section {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 48px 100px;
}

.contact-card {
  border: 1px solid #1E2330;
  border-radius: 4px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5A6070;
}

input,
textarea {
  background-color: #0D0F16;
  border: 1px solid #1E2330;
  border-radius: 3px;
  padding: 12px 16px;
  color: #E8EAF0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
  width: 100%;
}

input:focus,
textarea:focus {
  border-color: #6C8EF5;
}

.contact-card button {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #E8EAF0;
  letter-spacing: 0.07em;
  background: none;
  border: none;
  border-bottom: 1px solid #6C8EF5;
  padding-bottom: 3px;
  cursor: pointer;
  transition: color 0.2s ease;
  align-self: flex-start;
  font-family: 'DM Sans', sans-serif;
}

.contact-card button:hover {
  color: #6C8EF5;
}
