@font-face {
  font-family: "CarbonCeroSerif";
  src: url("_assets/static.parastorage.com/fonts/v2/1ca3c197-aa89-4e46-9e10-6b0e6617534b/v1/cormorantgaramond.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "CarbonCeroSans";
  src: url("_assets/static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w01_35-light1475496.woff2") format("woff2");
  font-display: swap;
}

:root {
  --bg: #08111d;
  --text: #0b1220;
  --text-soft: #61738a;
  --text-inverse: #f7fbff;
  --accent: #00d7ff;
  --accent-strong: #1d67cd;
  --gradient: linear-gradient(135deg, #013593 0%, #0079ea 60%, #00d7ff 100%);
  --shadow: 0 25px 70px rgba(2, 18, 38, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #f4f9ff;
  font-family: "CarbonCeroSans", Arial, sans-serif;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-shell {
  position: relative;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 17, 29, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(4, 12, 24, 0.18);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 144px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text-inverse);
}

.main-nav a {
  position: relative;
  font-size: 0.97rem;
  opacity: 0.92;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--accent);
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.main-nav .nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  background:
    radial-gradient(circle at top right, rgba(0, 215, 255, 0.16), transparent 18%),
    linear-gradient(180deg, #03101d 0%, #03101d 56%, #0d417d 56%, #0d417d 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 10, 19, 0.1) 0%, rgba(1, 10, 19, 0.08) 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.55;
  mix-blend-mode: screen;
}

.hero-glow-a {
  width: 360px;
  height: 360px;
  right: 12%;
  top: 18%;
  background: radial-gradient(circle, rgba(0, 215, 255, 0.5) 0%, rgba(0, 215, 255, 0) 70%);
  animation: pulse 7s ease-in-out infinite;
}

.hero-glow-b {
  width: 260px;
  height: 260px;
  right: 28%;
  bottom: 16%;
  background: radial-gradient(circle, rgba(29, 103, 205, 0.45) 0%, rgba(29, 103, 205, 0) 72%);
  animation: pulse 9s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 70px;
  color: var(--text-inverse);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.copy-block h2,
.contact-copy h2 {
  margin: 18px 0;
  font-family: "CarbonCeroSerif", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-stage {
  display: grid;
  place-items: center;
  min-height: 46svh;
  text-align: center;
}

.hero-stage h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.9rem, 5.2vw, 4.5rem);
  line-height: 1.12;
}

.hero-bottom-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 0;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(2, 12, 25, 0.22);
}

.hero-panel {
  display: flex;
  align-items: center;
  min-height: 320px;
  padding: 38px 34px;
  background: #0d417d;
}

.hero-panel p {
  max-width: 280px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero-image-card {
  min-height: 320px;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #031324;
  background: linear-gradient(135deg, #7bf0ff 0%, #00d7ff 60%, #7ee7ff 100%);
  box-shadow: 0 18px 44px rgba(0, 215, 255, 0.28);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-block {
  width: 100%;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-light {
  background:
    radial-gradient(circle at top right, rgba(0, 215, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fcff 0%, #eef6ff 100%);
}

.section-dark {
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top left, rgba(0, 215, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #06111e 0%, #09182a 100%);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.copy-block h2,
.section-head h2,
.contact-copy h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1;
}

.copy-block p,
.section-head p,
.contact-copy p,
.commodities-footnote {
  margin: 0 0 18px;
  line-height: 1.85;
  font-size: 1.02rem;
  color: var(--text-soft);
}

.section-dark .section-head p,
.section-dark .commodities-footnote,
.contact-copy p {
  color: rgba(240, 247, 255, 0.8);
}

.media-stack {
  position: relative;
  min-height: 620px;
}

.floating-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: #fff;
}

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

.card-large {
  inset: 52px 80px 52px 0;
}

.card-small {
  width: 240px;
  height: 180px;
}

.top-right {
  top: 0;
  right: 0;
}

.bottom-left {
  bottom: 0;
  left: 80px;
}

.commitment-panel {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 64px rgba(9, 35, 74, 0.08);
}

.commitment-panel h3 {
  margin: 0;
  font-family: "CarbonCeroSerif", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.commitment-panel img {
  border-radius: var(--radius-lg);
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
}

.team-section {
  overflow: hidden;
}

.team-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background: url("_assets/carboncero-restored-backgrounds/11062b_54ef6fb8ec744a24a353d6758db5286d~mv2.jpg") center/cover no-repeat;
}

.section-head {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin-bottom: 38px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.team-grid,
.services-grid,
.commodities-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.team-card,
.service-card,
.commodity-card,
.process-step {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.team-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.team-card:hover,
.service-card:hover,
.commodity-card:hover,
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(1, 10, 24, 0.28);
}

.team-card img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
}

.team-copy {
  padding: 20px 18px 24px;
  text-align: center;
}

.team-copy h3,
.service-card h3,
.commodity-copy h3,
.process-step h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
}

.team-copy p,
.service-card p,
.commodity-copy p,
.process-step p {
  margin: 0;
  line-height: 1.7;
}

.process-section {
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  padding: 26px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(8, 29, 66, 0.08);
}

.process-step span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-size: 2.1rem;
  font-family: "CarbonCeroSerif", Georgia, serif;
}

.services-section {
  background:
    radial-gradient(circle at top center, rgba(0, 121, 234, 0.1), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #edf7ff 100%);
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 54px rgba(10, 36, 75, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  padding-left: 20px;
  padding-right: 20px;
}

.service-card h3 {
  margin-top: 20px;
}

.service-card p {
  padding-bottom: 22px;
  color: var(--text-soft);
}

.commodities-section {
  overflow: hidden;
}

.commodities-grid {
  grid-template-columns: repeat(5, 1fr);
}

.commodity-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 58px rgba(1, 9, 20, 0.26);
}

.commodity-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.commodity-copy {
  padding: 20px 18px 24px;
}

.commodities-footnote {
  max-width: 900px;
  margin: 30px auto 0;
  text-align: center;
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: var(--text-inverse);
  background: #020d1b;
}

.contact-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 12, 24, 0.88) 0%, rgba(4, 18, 38, 0.68) 52%, rgba(2, 12, 24, 0.78) 100%),
    linear-gradient(180deg, rgba(0, 121, 234, 0.16), rgba(1, 16, 34, 0.28));
}

.contact-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.contact-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-card span {
  font-size: 0.94rem;
  color: rgba(246, 250, 255, 0.88);
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(0, 215, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.form-note {
  min-height: 22px;
  margin: 14px 0 0;
  color: #9feeff;
}

.site-footer {
  background: var(--gradient);
  color: #fff;
}

.footer-wrap {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-wrap img {
  width: 140px;
}

.footer-wrap a {
  font-size: 0.96rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { transform: scale(1) translate3d(0, 0, 0); opacity: 0.55; }
  50% { transform: scale(1.12) translate3d(0, -8px, 0); opacity: 0.9; }
}

@media (max-width: 1120px) {
  .team-grid,
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .commodities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-rail {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 82px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(8, 17, 29, 0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .split-layout,
  .contact-wrap,
  .commitment-panel,
  .hero-bottom-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-image-card {
    min-height: 240px;
  }

  .media-stack {
    min-height: 520px;
  }

  .card-large {
    inset: 40px 40px 80px 0;
  }

  .bottom-left {
    left: 36px;
  }

  .team-grid,
  .services-grid,
  .commodities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 84px 0;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 64px;
  }

  .hero-stage {
    min-height: 32svh;
    align-items: end;
    padding-bottom: 30px;
  }

  .hero-stage h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
    line-height: 1.02;
  }

  .section-kicker {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .hero-panel {
    min-height: 210px;
    padding: 28px 24px;
  }

  .hero-panel p,
  .copy-block p,
  .section-head p,
  .contact-copy p,
  .commodities-footnote {
    font-size: 0.98rem;
  }

  .media-stack {
    min-height: 380px;
  }

  .card-large {
    inset: 20px 18px 72px 0;
  }

  .card-small {
    width: 160px;
    height: 118px;
  }

  .bottom-left {
    left: 20px;
  }

  .team-grid,
  .services-grid,
  .commodities-grid,
  .process-rail,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 22px;
  }

  .footer-wrap {
    min-height: 110px;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
