:root {
  --night-900: #04101f;
  --night-800: #081b33;
  --night-700: #0c2447;
  --ice-100: #f6fbff;
  --ice-200: #ddefff;
  --ice-300: #bddff7;
  --cyan-400: #59d9ff;
  --cyan-500: #0dcfff;
  --cyan-600: #0c8bce;
  --gold-300: #f2d9a6;
  --ink-900: #09131f;
  --ink-700: #31445d;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(129, 180, 224, 0.28);
  --shadow-deep: 0 30px 80px rgba(2, 10, 27, 0.28);
  --shadow-card: 0 18px 46px rgba(7, 24, 48, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: min(1440px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink-900);
  line-height: 1.65;
  background:
    radial-gradient(circle at 8% 12%, rgba(91, 217, 255, 0.18), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(242, 217, 166, 0.22), transparent 28%),
    radial-gradient(circle at 76% 76%, rgba(13, 207, 255, 0.14), transparent 24%),
    linear-gradient(140deg, #f9fcff 0%, #edf5ff 28%, #e7eef9 52%, #fdf9f1 100%);
}

body.enhanced-ui {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.ambient {
  position: fixed;
  inset: auto;
  z-index: 0;
  pointer-events: none;
  filter: blur(18px);
}

.ambient-a {
  top: 72px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(13, 207, 255, 0.18), transparent 64%);
}

.ambient-b {
  left: -120px;
  bottom: 20%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(7, 26, 51, 0.12), transparent 68%);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px 0 64px;
}

.site-header,
.panel {
  width: var(--content);
  margin: 0 auto 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(244, 250, 255, 0.66));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
}

.panel {
  padding: 34px;
}

.hero-shell {
  padding: 28px 28px 34px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(4, 16, 31, 0.96), rgba(10, 34, 71, 0.94)),
    radial-gradient(circle at top left, rgba(89, 217, 255, 0.24), transparent 30%);
  color: var(--ice-100);
  box-shadow: var(--shadow-deep);
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(89, 217, 255, 0.22), transparent 20%),
    radial-gradient(circle at 20% 100%, rgba(242, 217, 166, 0.14), transparent 20%);
  pointer-events: none;
}

.topbar,
.hero-layout,
main {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}

.brand-mark img {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.brand-mark strong,
.hero-nav a,
.eyebrow,
h1,
h2,
h3,
.cta,
button,
.hero-chip {
  font-family: "Sora", sans-serif;
}

.brand-mark span {
  display: grid;
  gap: 4px;
}

.brand-mark strong {
  font-size: 1.05rem;
}

.brand-mark small {
  color: rgba(233, 245, 255, 0.74);
}

.hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-nav a {
  color: rgba(244, 251, 255, 0.86);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.hero-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-400), transparent);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.hero-nav a:hover::after,
.hero-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan-400);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.22;
}

.hero-lead,
.prompt-hub-copy,
.quote-panel p,
.contact-copy p,
.card p,
.prestige-card p,
li,
.status {
  font-size: 1.02rem;
}

.hero-copy {
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cta-primary {
  color: #04101f;
  background: linear-gradient(135deg, #ffffff, #b7ebff);
  box-shadow: 0 18px 34px rgba(89, 217, 255, 0.24);
}

.cta-secondary {
  color: var(--ice-100);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.cta:hover,
button:hover,
.card:hover,
.prestige-card:hover,
.mini-link:hover {
  transform: translateY(-2px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-metrics article,
.glass-card,
.prestige-card,
.card,
#contact-form {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(3, 10, 26, 0.16);
}

.hero-metrics article {
  padding: 16px 18px;
}

.hero-metrics strong {
  display: block;
  font-size: 1.3rem;
  font-family: "Sora", sans-serif;
}

.hero-metrics span {
  display: block;
  color: rgba(238, 246, 255, 0.78);
  font-size: 0.95rem;
}

.hero-card {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.hero-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f4fbff;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-chip-alt {
  background: rgba(242, 217, 166, 0.15);
  color: var(--gold-300);
}

.hero-image {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.22);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-card-copy {
  padding-top: 16px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.prestige-panel {
  position: relative;
  overflow: hidden;
}

.prestige-panel::before {
  content: "";
  position: absolute;
  pointer-events: none;
  right: -80px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 217, 255, 0.18), transparent 70%);
}

.prestige-grid,
.grid,
.proof-grid,
.seo-grid,
.prompt-grid,
.trust-grid,
.main-pages-grid,
.prompt-directory-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.quick-card,
.prompt-mini-card {
  min-height: 100%;
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 0 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(12, 36, 71, 0.98), rgba(13, 143, 206, 0.78));
  color: var(--ice-100);
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 28px rgba(7, 24, 48, 0.18);
}

.prompt-directory-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.prompt-search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 18px;
  flex-wrap: wrap;
}

.prompt-search-bar input {
  flex: 1 1 360px;
  min-height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(129, 180, 224, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 255, 0.82));
  color: var(--ink-900);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
}

.prompt-search-bar input::placeholder {
  color: rgba(49, 68, 93, 0.72);
}

.prompt-directory-result {
  margin: 0;
  color: var(--ink-700);
  font-weight: 800;
}

.prompt-mini-id {
  margin: 0 0 8px;
  color: var(--cyan-600);
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prestige-card,
.card {
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 248, 255, 0.8));
  border: 1px solid rgba(116, 162, 210, 0.22);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.prestige-card::after,
.card::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 207, 255, 0.35), transparent);
}

.card:hover,
.prestige-card:hover {
  border-color: rgba(13, 143, 206, 0.4);
  box-shadow: 0 24px 48px rgba(7, 24, 48, 0.2);
}

.split-panel {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.quote-panel {
  padding: 28px;
  background: linear-gradient(180deg, rgba(8, 27, 51, 0.95), rgba(14, 42, 78, 0.88));
  color: var(--ice-100);
}

.quote-panel blockquote {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: 1.38rem;
  line-height: 1.45;
}

.highlights-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.highlights-panel li {
  position: relative;
  padding: 18px 18px 18px 54px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.82));
  border: 1px solid rgba(116, 162, 210, 0.22);
  box-shadow: var(--shadow-card);
}

.highlights-panel li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-400), var(--night-700));
  box-shadow: 0 0 0 6px rgba(13, 207, 255, 0.12);
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--cyan-600);
  text-decoration: none;
  font-weight: 800;
}

.mini-link::after {
  content: ">";
  transition: transform 180ms ease;
}

.mini-link:hover::after {
  transform: translateX(2px);
}

.contact-panel {
  display: grid;
  gap: 22px;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}
.mobile-quick-bar {
  display: none;
}

form {
  display: grid;
  gap: 14px;
}

#contact-form {
  padding: 24px;
  background: linear-gradient(180deg, rgba(8, 27, 51, 0.94), rgba(12, 36, 71, 0.86));
}

input,
textarea,
button {
  width: 100%;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
}

input,
textarea {
  color: var(--ice-100);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

input::placeholder,
textarea::placeholder {
  color: rgba(239, 246, 255, 0.68);
}

button {
  border: none;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: #07101f;
  background: linear-gradient(135deg, var(--gold-300), #ffffff);
  box-shadow: 0 16px 34px rgba(242, 217, 166, 0.22);
}

input:focus,
textarea:focus,
button:focus,
.cta:focus,
.hero-nav a:focus,
.mini-link:focus {
  outline: 2px solid rgba(89, 217, 255, 0.45);
  outline-offset: 2px;
}

.status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--ice-100);
  font-weight: 700;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 460ms ease, transform 460ms ease;
}

.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-layout,
  .split-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }
}

@media (min-width: 1440px) {
  .site-shell {
    padding-top: 28px;
  }

  .hero-shell {
    padding: 34px 38px 42px;
  }

  .panel {
    padding: 38px;
  }

  .hero-layout {
    gap: 40px;
  }

  .hero-card {
    padding: 22px;
  }

  .grid,
  .prestige-grid,
  .proof-grid,
  .seo-grid,
  .prompt-grid,
  .trust-grid,
  .main-pages-grid,
  .prompt-directory-grid {
    gap: 22px;
  }
}

@media (max-width: 820px) {
  .panel,
  .hero-shell {
    border-radius: 24px;
  }

  .panel {
    padding: 24px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-nav {
    gap: 12px;
  }

  .hero-nav a {
    font-size: 0.95rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .prompt-search-bar {
    align-items: stretch;
  }
}

@media (max-width: 560px) {
  .site-shell {
    padding-top: 16px;
  }

  .site-header,
  .panel {
    width: min(100vw - 18px, 1240px);
  }

  .hero-shell {
    padding: 18px 18px 24px;
  }

  .panel {
    padding: 20px 18px;
  }

  .brand-mark img {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .brand-mark {
    gap: 12px;
  }

  .hero-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .hero-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.4rem, 8vw, 2.1rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .cta {
    width: 100%;
  }

  .hero-card,
  .card,
  .prestige-card,
  #contact-form {
    border-radius: 20px;
  }

  .prompt-directory-grid,
  .main-pages-grid {
    grid-template-columns: 1fr;
  }

  .prompt-search-bar input,
  .prompt-directory-result {
    width: 100%;
  }

  .mobile-quick-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(129, 180, 224, 0.28);
    border-radius: 20px;
    background: rgba(7, 21, 39, 0.92);
    box-shadow: 0 22px 42px rgba(2, 10, 27, 0.3);
    backdrop-filter: blur(14px);
  }

  .mobile-quick-bar a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    text-decoration: none;
    font-family: "Sora", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ice-100);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(13, 207, 255, 0.12));
  }

  .hero-image {
    aspect-ratio: 4 / 5;
  }

  input,
  textarea,
  button {
    padding: 13px 14px;
  }
}

@media (max-width: 390px) {
  .site-header,
  .panel {
    width: calc(100vw - 12px);
  }

  .hero-shell {
    padding: 16px 14px 20px;
  }

  .panel {
    padding: 18px 14px;
  }

  .hero-nav {
    grid-template-columns: 1fr;
  }

  .hero-card-head {
    gap: 8px;
  }

  .hero-chip {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.76rem;
  }
}


/* Homepage and About Premium Rebuild */
body.homepage-body,
body.about-body {
  background:
    radial-gradient(circle at top left, rgba(255, 214, 102, 0.26), transparent 30%),
    radial-gradient(circle at top right, rgba(87, 191, 255, 0.24), transparent 34%),
    linear-gradient(180deg, #07111f 0%, #0c1d34 38%, #0a1628 100%);
  color: #f4f8ff;
  min-height: 100vh;
  overflow-x: hidden;
}

.homepage-aura {
  position: fixed;
  inset: auto;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.34;
  z-index: 0;
}

.homepage-aura-one {
  top: -6rem;
  left: -8rem;
  background: rgba(255, 188, 81, 0.34);
}

.homepage-aura-two {
  top: 8rem;
  right: -8rem;
  background: rgba(63, 173, 255, 0.28);
}

.homepage-gridline {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.42), transparent 90%);
  pointer-events: none;
  z-index: 0;
}

.homepage-header,
.homepage-main,
.about-main {
  position: relative;
  z-index: 1;
}

.homepage-header {
  padding: 1.25rem clamp(1rem, 2vw, 2rem) 0;
}

.homepage-nav-wrap {
  width: min(1480px, calc(100vw - 24px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(7, 18, 34, 0.7);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.24);
  border-radius: 1.5rem;
  backdrop-filter: blur(18px);
}

.homepage-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #f6fbff;
  text-decoration: none;
}

.homepage-brand img {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  box-shadow: 0 12px 24px rgba(5, 10, 20, 0.35);
}

.homepage-brand span {
  display: grid;
}

.homepage-brand strong {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.homepage-brand small {
  color: rgba(236, 244, 255, 0.74);
}

.homepage-nav {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.homepage-nav a,
.homepage-nav-cta {
  text-decoration: none;
}

.homepage-nav a {
  color: rgba(241, 248, 255, 0.84);
  font-weight: 600;
}

.homepage-nav a:hover {
  color: #ffffff;
}

.homepage-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  color: #0a1730;
  background: linear-gradient(135deg, #ffd37c, #fff0ca);
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(255, 206, 109, 0.24);
}

.homepage-main,
.about-main {
  width: min(1480px, calc(100vw - 24px));
  margin: 0 auto;
  padding: clamp(1.25rem, 2vw, 2rem) 0 7rem;
}

.homepage-hero,
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: clamp(1.25rem, 2vw, 2rem);
  align-items: stretch;
  min-height: clamp(620px, 76vh, 860px);
  padding: clamp(1rem, 1vw, 1.5rem) 0 clamp(1.5rem, 2vw, 2rem);
}

.homepage-hero-copy,
.about-hero-copy {
  padding: clamp(1rem, 2vw, 2rem) clamp(0.25rem, 1vw, 0.75rem) clamp(1rem, 1vw, 1.5rem) 0;
  align-self: center;
}

.homepage-kicker,
.eyebrow {
  color: #9fd0ff;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
}

.homepage-hero h1,
.about-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 0.9rem 0 1.1rem;
  max-width: 12ch;
  color: #fbfdff;
}

.homepage-hero-lead,
.about-lead {
  font-size: clamp(1.02rem, 1.3vw, 1.28rem);
  line-height: 1.8;
  max-width: 62ch;
  color: rgba(233, 242, 255, 0.84);
}

.homepage-hero-actions,
.cta-stack-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 1.65rem;
}

.homepage-signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.homepage-signal-row article,
.hero-floating-card,
.homepage-proof-card,
.homepage-main-card,
.about-standard-card {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}

.homepage-signal-row article {
  border-radius: 1.35rem;
  padding: 1rem 1.1rem;
}

.homepage-signal-row strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  color: #ffffff;
}

.homepage-signal-row span {
  color: rgba(233, 242, 255, 0.72);
  font-size: 0.92rem;
}

.homepage-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 1rem;
  align-items: stretch;
}

.hero-stage-card-main {
  padding: 1.2rem;
  border-radius: 2rem;
}

.hero-stage-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.hero-stage-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #f8fbff;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-stage-pill-alt {
  background: rgba(255, 211, 124, 0.14);
  color: #ffe3a3;
}

.hero-stage-image,
.about-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: 1.5rem;
  display: block;
}

.hero-stage-copy {
  padding: 1.15rem 0.2rem 0.15rem;
}

.hero-stage-copy h2,
.homepage-about-copy h2,
.about-hero-card h2,
.about-story-card h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1.15;
  margin: 0.3rem 0 0.8rem;
  color: #ffffff;
}

.hero-stage-copy p,
.homepage-about-copy p,
.about-hero-card p,
.about-story-card p,
.homepage-mini-panel p,
.homepage-proof-card p,
.about-standard-card p,
.about-pillar p {
  color: rgba(233, 242, 255, 0.8);
  line-height: 1.75;
}

.hero-stage-stack {
  display: grid;
  gap: 1rem;
}

.hero-floating-card {
  border-radius: 1.4rem;
  padding: 1.15rem;
  align-content: end;
}

.hero-floating-card h3 {
  font-size: 1rem;
  line-height: 1.55;
  margin: 0.35rem 0 0;
  color: #fff;
}

.homepage-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  overflow: hidden;
}

.homepage-ribbon div {
  padding: 1rem 1.2rem;
  text-align: center;
  font-weight: 700;
  color: #edf6ff;
  background: rgba(255,255,255,0.04);
}

.homepage-section,
.about-section {
  margin-top: 1.45rem;
  padding: clamp(1.35rem, 2.2vw, 2.2rem);
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(10, 22, 40, 0.72);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.section-heading-light h2,
.section-heading-light p,
.section-heading-light .eyebrow,
.homepage-section h2,
.about-section h2,
.about-section p,
.homepage-section p {
  color: inherit;
}

.section-heading-light p:not(.eyebrow) {
  color: rgba(233, 242, 255, 0.82);
  max-width: 62ch;
}

.homepage-service-grid,
.homepage-proof-grid,
.about-pillars,
.about-standard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.homepage-service-grid .card {
  min-height: 280px;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow: 0 24px 50px rgba(0,0,0,0.22);
}

.homepage-service-grid .card-icon,
.proof-icon,
.about-pillar span,
.homepage-main-card span {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, #80c6ff, #f3cf87);
  color: #08162c;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(124, 200, 255, 0.18);
}

.homepage-service-grid h3,
.homepage-main-card h3,
.homepage-proof-card h3,
.about-pillar h3,
.about-standard-card h3 {
  color: #fff;
}

.homepage-service-grid p,
.homepage-main-card p,
.about-pillar p,
.about-standard-card p {
  color: rgba(233,242,255,0.78);
}

.homepage-two-col,
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 1rem;
}

.homepage-main-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.homepage-main-card {
  border-radius: 1.5rem;
  padding: 1.2rem;
}

.homepage-main-card span {
  margin-bottom: 0.9rem;
}

.homepage-highlight-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.homepage-highlight-list li {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(240,246,255,0.84);
}

.homepage-proof-card {
  border-radius: 1.5rem;
  padding: 1.2rem;
}

.homepage-about-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 1rem;
}

.homepage-about-panels {
  display: grid;
  gap: 1rem;
}

.homepage-mini-panel,
.about-story-card,
.about-hero-card,
.about-contact-card,
.homepage-spotlight {
  border-radius: 1.6rem;
  padding: 1.35rem;
}

.prompt-search-bar {
  margin-top: 1rem;
}

.prompt-search-bar input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

.prompt-search-bar input::placeholder {
  color: rgba(227,238,255,0.58);
}

.prompt-directory-result {
  color: rgba(232, 241, 255, 0.72);
}

.prompt-directory-grid .prompt-mini-card {
  border-radius: 1.4rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
}

.prompt-directory-grid .prompt-mini-card h3,
.prompt-directory-grid .prompt-mini-card p,
.prompt-directory-grid .prompt-mini-card a {
  color: inherit;
}

.homepage-contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.homepage-contact-form {
  border-radius: 1.75rem;
  padding: 1.35rem;
}

.homepage-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.homepage-contact-form input,
.homepage-contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

.homepage-contact-form input::placeholder,
.homepage-contact-form textarea::placeholder {
  color: rgba(227,238,255,0.58);
}

.homepage-contact-form button {
  margin-top: 1rem;
}

.about-main {
  padding-top: 1.4rem;
}

.about-hero-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.about-pillars,
.about-standard-grid {
  margin-top: 1rem;
}

.about-pillar,
.about-standard-card {
  border-radius: 1.5rem;
  padding: 1.2rem;
}

.about-pillar span {
  margin-bottom: 1rem;
}

.about-story-grid {
  align-items: stretch;
}

.about-story-card {
  min-height: 100%;
}

.about-contact-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.9s ease forwards;
}

.reveal-up:nth-child(2) { animation-delay: 0.08s; }
.reveal-up:nth-child(3) { animation-delay: 0.16s; }
.reveal-up:nth-child(4) { animation-delay: 0.24s; }
.reveal-up:nth-child(5) { animation-delay: 0.32s; }

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .homepage-nav-wrap,
  .homepage-main,
  .about-main {
    width: min(100vw - 20px, 1120px);
  }

  .homepage-hero,
  .about-hero,
  .homepage-about-teaser,
  .homepage-two-col,
  .about-story-grid,
  .homepage-contact-section {
    grid-template-columns: 1fr;
  }

  .homepage-hero-stage {
    grid-template-columns: 1fr;
  }

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

  .homepage-service-grid,
  .homepage-proof-grid,
  .about-pillars,
  .about-standard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .homepage-nav-wrap {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .homepage-nav {
    justify-content: flex-start;
  }

  .homepage-hero h1,
  .about-hero h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .homepage-signal-row,
  .homepage-ribbon,
  .homepage-service-grid,
  .homepage-proof-grid,
  .homepage-main-grid,
  .about-pillars,
  .about-standard-grid,
  .homepage-form-grid,
  .hero-stage-stack {
    grid-template-columns: 1fr;
  }

  .homepage-contact-form,
  .homepage-section,
  .about-section,
  .hero-stage-card-main,
  .homepage-main-card,
  .homepage-proof-card,
  .about-pillar,
  .about-standard-card,
  .about-contact-card {
    padding: 1.05rem;
  }

  .about-contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .homepage-header {
    padding-top: 0.85rem;
  }

  .homepage-nav-wrap,
  .homepage-main,
  .about-main {
    width: calc(100vw - 16px);
  }

  .homepage-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.7rem 1rem;
  }

  .homepage-nav-cta,
  .homepage-hero-actions .cta,
  .cta-stack-inline .cta,
  .homepage-contact-form button {
    width: 100%;
  }

  .hero-stage-image,
  .about-hero-card img {
    aspect-ratio: 4 / 5;
  }
}

.lookup-form-shell {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: end;
}

.lookup-form-shell label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--ink-900);
}

.lookup-form-shell input,
.lookup-form-shell select {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(12, 36, 71, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-900);
  font: inherit;
}

.lookup-result-card {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

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

.lookup-card,
.lookup-note-item,
.career-apply-card,
.admin-filter-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(241, 247, 255, 0.74));
  box-shadow: var(--shadow-card);
}

.lookup-card {
  padding: 18px 20px;
}

.lookup-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--cyan-600);
}

.lookup-card strong {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.lookup-story-grid {
  align-items: stretch;
}

.lookup-timeline {
  display: grid;
  gap: 12px;
}

.lookup-note-item {
  padding: 16px 18px;
}

.lookup-note-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-900);
}

.career-form-shell {
  display: grid;
  gap: 14px;
  min-width: min(100%, 420px);
}

.career-form-shell label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.career-form-shell input {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(12, 36, 71, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink-900);
  font: inherit;
}

.career-form-shell button,
.lookup-form-shell button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #071f3d, #0dcfff);
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-filter-shell {
  padding: 18px;
  margin-bottom: 18px;
}
