/* Lumen Edge marketing — modern layout, mint / lavender brand */
:root {
  --mint: #8fc3a7;
  --mint-dark: #6fa889;
  --mint-deep: #4a7d62;
  --lavender: #b8a6cc;
  --lavender-soft: rgba(184, 166, 204, 0.35);
  --info: #2b6cb0;
  --text: #2e3230;
  --text-muted: #5c6370;
  --surface: #ffffff;
  --surface-soft: #fcfdfc;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --border: #e4ebe7;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 2px 16px rgba(61, 61, 61, 0.06);
  --shadow-md: 0 8px 32px rgba(61, 61, 61, 0.08);
  --shadow-lift: 0 12px 40px rgba(46, 90, 68, 0.12);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
  --font-display: "Outfit", var(--font);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  background-color: #f5faf7;
  background-image:
    radial-gradient(
      ellipse 85% 55% at 12% -5%,
      rgba(143, 195, 167, 0.16) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 75% 50% at 92% 8%,
      rgba(184, 166, 204, 0.12) 0%,
      transparent 52%
    ),
    radial-gradient(
      ellipse 90% 45% at 50% 105%,
      rgba(143, 195, 167, 0.1) 0%,
      transparent 55%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath fill='%23b8a6cc' fill-opacity='0.11' d='M0,42 C240,8 480,72 720,42 C960,12 1200,68 1440,38 L1440,0 L0,0z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%238fc3a7' fill-opacity='0.06' d='M0,62 C320,22 640,92 960,52 C1120,32 1280,48 1440,58 L1440,100 L0,100z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath fill='%23b8a6cc' fill-opacity='0.1' d='M0,78 C280,38 560,98 840,58 C1040,28 1240,88 1440,48 L1440,110 L0,110z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%238fc3a7' fill-opacity='0.09' d='M0,52 C220,18 440,82 660,48 C880,14 1100,72 1320,42 C1380,34 1410,38 1440,44 L1440,100 L0,100z'/%3E%3C/svg%3E");
  background-size:
    auto,
    auto,
    auto,
    100% clamp(72px, 12vh, 120px),
    100% clamp(90px, 16vh, 160px),
    100% clamp(100px, 20vh, 200px),
    100% clamp(88px, 18vh, 170px);
  background-position:
    center 0,
    center 0,
    center 100%,
    center 0,
    center 55%,
    center calc(100% + 2px),
    center 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (hover: none) and (pointer: coarse) {
  body {
    background-attachment: scroll;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  body {
    background-attachment: scroll;
  }
  .btn {
    transition: none;
  }
  .hero-glow {
    animation: none !important;
  }
}

.brand-bar {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--mint) 0%,
    var(--lavender) 50%,
    var(--mint-dark) 100%
  );
}

a {
  color: #1d6bbd;
}

a:hover {
  color: var(--info);
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--mint-dark);
  outline-offset: 2px;
}

.wrap {
  width: min(1100px, 100% - clamp(1rem, 5vw, 2rem));
  margin-inline: auto;
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
  padding-inline: max(0px, env(safe-area-inset-left, 0px))
    max(0px, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.site-header {
  padding-block: 0;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(252, 253, 252, 0.88);
  border-bottom: 1px solid rgba(143, 195, 167, 0.14);
  backdrop-filter: blur(12px);
}

@supports not (backdrop-filter: blur(12px)) {
  .site-header {
    background: rgba(252, 253, 252, 0.97);
  }
}

.header-inner {
  padding-block: 1.25rem 1.35rem;
}

.header-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  width: 100%;
}

.brand-logo-link {
  display: block;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.brand-logo-link:hover {
  opacity: 0.92;
}

.brand-logo {
  display: block;
  height: clamp(72px, 18vw, 120px);
  width: auto;
  max-width: min(400px, calc(100vw - 2rem));
  object-fit: contain;
}

/* —— Core value —— */
.core-value-band {
  padding-block: 1.5rem 1.75rem;
  position: relative;
}

.core-value-band .wrap {
  padding-block: 0;
}

.core-value-card {
  position: relative;
  max-width: 52rem;
  margin-inline: auto;
  padding: 1.25rem 1.35rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(143, 195, 167, 0.28);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(252, 253, 252, 0.85) 100%
  );
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.core-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(143, 195, 167, 0.45),
    rgba(184, 166, 204, 0.35),
    rgba(143, 195, 167, 0.25)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.core-value-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 0.5rem;
}

.core-value-text {
  margin: 0;
  font-size: clamp(1.15rem, 2.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  text-wrap: balance;
}

/* —— Hero —— */
.hero {
  position: relative;
  padding-block: clamp(1.5rem, 4vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  /* Allow circular loop cards to extend slightly outside the orbit box */
  overflow-x: hidden;
  overflow-y: visible;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -15%;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(143, 195, 167, 0.28) 0%,
    rgba(184, 166, 204, 0.12) 42%,
    transparent 70%
  );
  pointer-events: none;
  animation: heroGlow 14s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.85;
  }
  100% {
    transform: translate(-6%, 4%) scale(1.06);
    opacity: 1;
  }
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr min(380px, 38%);
    gap: 2.5rem 3rem;
    align-items: stretch;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint-deep);
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--mint), var(--lavender));
}

.eyebrow--flush {
  margin: 0;
}

.eyebrow--flush::before {
  display: none;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.1rem;
  margin-bottom: 1.1rem;
}

.ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem 0.4rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2d5a44;
  background: linear-gradient(
    135deg,
    rgba(143, 195, 167, 0.32) 0%,
    rgba(184, 166, 204, 0.2) 100%
  );
  border: 1px solid rgba(111, 168, 137, 0.45);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(111, 168, 137, 0.12);
}

.ai-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-dark);
  box-shadow: 0 0 0 4px rgba(143, 195, 167, 0.35);
  animation: aiPulse 2.2s ease-in-out infinite;
}

@keyframes aiPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(0.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-pill__dot {
    animation: none;
  }
}

.hero-main .lead {
  margin-top: 0;
}

.hero-main .lead + .solution-loop {
  margin-top: 1.35rem;
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.15;
  color: var(--text);
}

.hero-title__line {
  display: block;
}

.hero-title__accent {
  margin-top: 0.45rem;
  font-weight: 600;
  font-size: clamp(1.45rem, 3.4vw, 1.95rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-muted);
}

.hero-title__pop {
  background: linear-gradient(120deg, var(--mint-deep) 0%, var(--mint-dark) 42%, #6b8aa6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0;
  font-size: clamp(1.02rem, 2.2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 42rem;
  line-height: 1.65;
}

.lead--cta {
  margin-top: 1.5rem;
  padding-top: 0.25rem;
  max-width: 40rem;
  font-size: clamp(0.98rem, 2.1vw, 1.05rem);
}

/* —— Solution loop —— */
.solution-loop {
  margin-top: 1.25rem;
}

.solution-loop__intro {
  margin-bottom: 0.85rem;
}

.solution-loop__heading {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.solution-loop__hint {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 36rem;
}

.solution-loop__surface {
  padding: clamp(1rem, 3vw, 1.35rem);
  padding-bottom: clamp(1.15rem, 3vw, 1.5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(247, 251, 248, 0.96) 100%
  );
  border: 1px solid rgba(143, 195, 167, 0.22);
  box-shadow: 0 8px 36px rgba(61, 90, 72, 0.07);
  overflow: visible;
}

/* Circular orbit: steps at top → right → bottom → left (clockwise) */
.solution-loop__orbit {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  margin-inline: auto;
  margin-block: clamp(0.25rem, 2vw, 0.75rem);
  /* Radius from center to each card anchor (tuned to ring geometry) */
  --orbit-r: clamp(108px, 29vmin, 162px);
  --orbit-a: 0deg;
}

.solution-loop__ring {
  position: absolute;
  inset: 9%;
  width: auto;
  height: auto;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.solution-loop__ring-circle {
  transform-origin: 50px 50px;
  animation: orbitRingDash 24s linear infinite;
}

@keyframes orbitRingDash {
  to {
    stroke-dashoffset: -48;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-loop__ring-circle {
    animation: none;
  }
}

.solution-loop__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  width: clamp(3rem, 10vmin, 3.75rem);
  height: clamp(3rem, 10vmin, 3.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-loop__hub-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(252, 253, 252, 0.88) 100%
  );
  border: 2px solid rgba(143, 195, 167, 0.35);
  box-shadow: 0 4px 20px rgba(111, 168, 137, 0.12);
}

.solution-loop__hub-icon {
  position: relative;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--mint-deep);
  opacity: 0.88;
  animation: hubSpin 14s linear infinite;
}

@keyframes hubSpin {
  to {
    transform: rotate(-360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-loop__hub-icon {
    animation: none;
  }
}

.solution-loop__step {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 235, 233, 0.95);
  box-shadow: 0 4px 18px rgba(61, 90, 72, 0.06);
  min-width: 0;
}

.solution-loop__step--orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(46%, 230px);
  max-width: 230px;
  transform: translate(-50%, -50%) rotate(var(--orbit-a))
    translateY(calc(-1 * var(--orbit-r))) rotate(calc(-1 * var(--orbit-a)));
}

.solution-loop__step--at1 {
  --orbit-a: -90deg;
}

.solution-loop__step--at2 {
  --orbit-a: 0deg;
}

.solution-loop__step--at3 {
  --orbit-a: 90deg;
}

.solution-loop__step--at4 {
  --orbit-a: 180deg;
}

.solution-loop__n {
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  background: linear-gradient(145deg, var(--mint) 0%, var(--mint-dark) 100%);
  box-shadow: 0 3px 12px rgba(111, 168, 137, 0.35);
}

.solution-loop__n--alt {
  background: linear-gradient(145deg, #a894c4 0%, #8f78ad 100%);
  box-shadow: 0 3px 12px rgba(143, 120, 173, 0.28);
}

.solution-loop__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.solution-loop__label {
  font-size: clamp(0.82rem, 2vw, 0.98rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.32;
  color: var(--text);
}

.solution-loop__micro {
  font-size: clamp(0.72rem, 1.8vw, 0.8rem);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.38;
}

.solution-loop__tagline {
  margin: clamp(1rem, 3vw, 1.35rem) 0 0;
  padding-top: clamp(0.85rem, 2vw, 1.1rem);
  border-top: 1px dashed rgba(143, 195, 167, 0.38);
  text-align: center;
  font-size: clamp(0.92rem, 2.1vw, 1.02rem);
  font-weight: 600;
  font-style: italic;
  color: var(--mint-deep);
  letter-spacing: -0.01em;
  line-height: 1.45;
}

@media (max-width: 400px) {
  .solution-loop__orbit {
    --orbit-r: clamp(96px, 27vmin, 118px);
  }

  .solution-loop__step--orbit {
    width: min(50%, 210px);
    padding: 0.65rem 0.72rem;
  }
}

/* Post-loop deliverables — icons + minimal copy */
.loop-deliverables {
  margin-top: clamp(1.75rem, 4.5vw, 2.5rem);
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  border-top: 1px solid rgba(143, 195, 167, 0.2);
}

.loop-deliverables__title {
  margin: 0 0 clamp(1rem, 2.5vw, 1.35rem);
  font-size: clamp(0.75rem, 1.8vw, 0.8125rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.loop-deliverables__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(0.65rem, 2vw, 0.85rem);
}

.loop-deliverables__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  padding: 1rem 1rem 1.05rem 1.15rem;
  border-radius: var(--radius);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(248, 251, 249, 0.94) 100%
  );
  border: 1px solid rgba(232, 235, 233, 0.95);
  box-shadow: 0 4px 18px rgba(61, 90, 72, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  min-height: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .loop-deliverables__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(61, 90, 72, 0.09);
    border-color: rgba(143, 195, 167, 0.35);
  }
}

.loop-deliverables__card--wide {
  grid-column: 1 / -1;
  max-width: 40rem;
  margin-inline: auto;
  width: 100%;
}

@media (min-width: 720px) {
  .loop-deliverables__card--wide {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.05rem 1.35rem;
    max-width: 44rem;
  }

  .loop-deliverables__card--wide .loop-deliverables__text {
    font-size: clamp(0.95rem, 1.6vw, 1.04rem);
  }
}

.loop-deliverables__badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 1.35rem;
  height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(92, 99, 112, 0.55);
  background: rgba(143, 195, 167, 0.14);
  border: 1px solid rgba(143, 195, 167, 0.22);
}

.loop-deliverables__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  flex-shrink: 0;
}

.loop-deliverables__icon--mint {
  color: var(--mint-deep);
  background: rgba(143, 195, 167, 0.2);
  border: 1px solid rgba(143, 195, 167, 0.28);
}

.loop-deliverables__icon--lav {
  color: #6b5b82;
  background: rgba(184, 166, 204, 0.22);
  border: 1px solid rgba(184, 166, 204, 0.32);
}

.loop-deliverables__text {
  margin: 0;
  font-size: clamp(0.88rem, 2vw, 0.95rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--text);
  text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
  .loop-deliverables__card {
    transition: none;
  }

  .loop-deliverables__card:hover {
    transform: none;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.65rem;
}

/* Quote card — compact pull-quote for a single short line */
.shore-quote-card {
  position: relative;
  padding: 0.95rem 1rem 1rem;
  border-radius: var(--radius);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(249, 252, 250, 0.98) 100%
  );
  border: 1px solid rgba(184, 166, 204, 0.26);
  box-shadow: 0 6px 24px rgba(111, 120, 173, 0.08);
}

.shore-quote-card__body {
  margin: 0;
}

.shore-quote-card__quote {
  margin: 0 0 0.65rem;
  padding-left: 0.65rem;
  border-left: 3px solid rgba(184, 166, 204, 0.55);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.01em;
  color: var(--text);
  text-wrap: balance;
}

.shore-quote-card__cite {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.45rem;
  margin: 0;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(232, 235, 233, 0.88);
}

.shore-quote-card__author {
  font-size: 0.8125rem;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  color: var(--mint-deep);
}

.shore-quote-card__author:hover {
  color: var(--info);
}

.shore-quote-card__sep {
  color: rgba(92, 99, 112, 0.45);
  font-weight: 400;
  user-select: none;
}

.shore-quote-card__role {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Mission (header) */
.mission {
  margin: 0;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #5a8f72;
  line-height: 1.45;
  text-wrap: balance;
}

.mission--header {
  flex: 1 1 min(100%, 280px);
  max-width: 32rem;
  margin: 0;
  padding-left: 1.25rem;
  border-left: 3px solid rgba(143, 195, 167, 0.45);
}

@media (max-width: 640px) {
  .mission--header {
    padding-left: 0;
    border-left: none;
    padding-top: 0.35rem;
    flex-basis: 100%;
    max-width: none;
  }

  .header-brand {
    gap: 0.85rem 1rem;
  }
}

/* —— Interest / forms —— */
.interest-band {
  padding-block: clamp(0.5rem, 2vw, 1rem) clamp(2.5rem, 6vw, 4rem);
}

.interest-intro {
  text-align: center;
  padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
}

.section-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-lead {
  margin: 0 auto;
  max-width: 36rem;
  font-size: clamp(1rem, 2.2vw, 1.0625rem);
  color: var(--text-muted);
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 840px) {
  .grid.two {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
}

.panel {
  background: var(--surface);
  border: 1px solid rgba(232, 235, 233, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.35rem, 4vw, 1.85rem);
}

.panel--lift {
  border-left: 4px solid var(--mint);
}

.panel--accent {
  background: linear-gradient(
    165deg,
    rgba(252, 253, 252, 1) 0%,
    rgba(248, 251, 249, 1) 100%
  );
  border-color: rgba(184, 166, 204, 0.22);
  border-left: 4px solid var(--lavender);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  flex-shrink: 0;
}

.panel-icon--form {
  color: var(--mint-deep);
  background: rgba(143, 195, 167, 0.18);
}

.panel-icon--chat {
  color: #6b5b82;
  background: rgba(184, 166, 204, 0.22);
}

.panel-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.form-hint {
  margin: 0 0 1.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 0.9rem;
  min-height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 1rem;
  background: var(--surface-soft);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(111, 168, 137, 0.55);
  background: var(--surface);
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--mint-dark);
  outline-offset: 2px;
}

/* Email / phone — grouped with visible “or” */
.form-contact-fieldset {
  margin: 0 0 1rem;
  padding: 0;
  border: none;
  min-width: 0;
}

.form-contact-legend {
  padding: 0;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.form-contact-legend__req {
  font-weight: 600;
  color: var(--text-muted);
}

.form-contact-hint {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.form-email-phone {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.9rem 1rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(143, 195, 167, 0.32);
  background: rgba(255, 255, 255, 0.82);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-contact-fieldset.form-contact-fieldset--error .form-email-phone {
  border-color: rgba(185, 28, 28, 0.45);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.08);
}

.form-field--compact {
  margin-bottom: 0;
}

.form-or {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 1.5rem;
}

.form-or__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  background: linear-gradient(
    135deg,
    rgba(143, 195, 167, 0.22) 0%,
    rgba(184, 166, 204, 0.16) 100%
  );
  border-radius: 999px;
  border: 1px solid rgba(143, 195, 167, 0.35);
}

@media (min-width: 560px) {
  .form-email-phone {
    flex-direction: row;
    align-items: flex-end;
    gap: 0.75rem;
    padding: 0.85rem 1rem 1rem;
  }

  .form-email-phone .form-field {
    flex: 1 1 0;
    min-width: 0;
  }

  .form-or {
    align-self: stretch;
    padding-bottom: 0.62rem;
    min-height: auto;
  }
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease,
    background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-wide {
  min-width: min(100%, 14rem);
}

@media (max-width: 480px) {
  .btn-primary.btn-wide {
    width: 100%;
  }
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(111, 168, 137, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 22px rgba(111, 168, 137, 0.38);
}

.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: none;
}

.btn-ghost {
  background: transparent;
  color: var(--mint-deep);
  border: 2px solid rgba(143, 195, 167, 0.55);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(143, 195, 167, 0.12);
  border-color: var(--mint-dark);
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.25rem;
}

.form-status.ok {
  color: #5a8f72;
}

.form-status.err {
  color: #b91c1c;
}

/* Contact */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}

.contact-row:last-of-type {
  margin-bottom: 0;
}

.contact-row__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  flex-shrink: 0;
  color: var(--mint-deep);
  background: rgba(143, 195, 167, 0.14);
}

.contact-row__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.contact-row__value {
  font-size: clamp(0.95rem, 2.2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  color: #1d6bbd;
  word-break: break-word;
}

.contact-row__value:hover {
  color: var(--info);
}

@media (pointer: coarse) {
  .contact-row__value {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
  }
}

.contact-footnote {
  margin-top: 1.35rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem !important;
  color: var(--text-muted);
  line-height: 1.5;
}

.site-footer {
  padding-block: 1.75rem;
  padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 0px));
  margin-top: 1rem;
  border-top: 1px solid rgba(232, 235, 233, 0.95);
  background: linear-gradient(180deg, transparent, rgba(245, 250, 247, 0.9));
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.site-footer__brand {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
