:root {
  --ink: #071216;
  --ink-soft: #24333a;
  --muted: #60717c;
  --line: #dce5e7;
  --paper: #f7fafc;
  --white: #ffffff;
  --mint: #70f2c6;
  --mint-strong: #0aa878;
  --amber: #f5b85a;
  --coral: #f06449;
  --radius: 8px;
  --shadow: 0 22px 50px rgba(7, 18, 22, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  line-height: 1.6;
}
body.is-loading { overflow: hidden; }
body.is-ready .hero-content,
body.is-ready .site-header,
body.is-ready .intro-strip,
body.is-ready .banner-panel,
body.is-ready .platform-card,
body.is-ready .portfolio-card {
  animation: riseIn 760ms ease both;
}
body.is-ready .platform-card:nth-child(2),
body.is-ready .portfolio-card:nth-child(2) { animation-delay: 80ms; }
body.is-ready .platform-card:nth-child(3),
body.is-ready .portfolio-card:nth-child(3) { animation-delay: 140ms; }
body.is-ready .platform-card:nth-child(4),
body.is-ready .portfolio-card:nth-child(4) { animation-delay: 200ms; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.intro-loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: #071216;
  transition: opacity 520ms ease, visibility 520ms ease;
}
.intro-loader div {
  display: grid;
  gap: 8px;
  text-align: center;
  animation: introPulse 920ms ease both;
}
.intro-loader span {
  color: var(--mint);
  font-size: clamp(42px, 8vw, 92px);
  font-weight: 900;
  line-height: 1;
}
.intro-loader strong {
  color: var(--amber);
  font-size: clamp(18px, 3vw, 30px);
}
.intro-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
@keyframes introPulse {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  background: rgba(247, 250, 252, 0.88);
  border-bottom: 1px solid rgba(220, 229, 231, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,0.95); box-shadow: 0 12px 30px rgba(7,18,22,0.08); }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ink);
}
.brand-mark.small { width: 38px; height: 38px; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-mark svg { width: 34px; height: 34px; }
.brand-text strong { display: block; color: var(--ink); font-size: 18px; line-height: 1; }
.brand-text span { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: 1.6px; }
.site-nav { display: flex; align-items: center; gap: 26px; color: var(--ink-soft); font-size: 15px; font-weight: 800; }
.site-nav a { padding: 8px 0; }
.site-nav .nav-contact { padding: 10px 16px; color: var(--white); background: var(--ink); border-radius: var(--radius); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); }

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 116px 0 58px;
  color: var(--white);
  background: var(--ink);
}
#nexus-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.hero-media-image {
  background-size: cover;
  background-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,18,22,0.95) 0%, rgba(7,18,22,0.78) 48%, rgba(7,18,22,0.42) 100%),
    linear-gradient(180deg, rgba(7,18,22,0.18) 0%, rgba(7,18,22,0.82) 100%);
}
.hero-content { position: relative; z-index: 1; }
.eyebrow, .section-kicker { margin: 0 0 16px; color: var(--mint); font-size: 13px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(56px, 11vw, 132px); line-height: 0.94; letter-spacing: 0; }
.hero-name { margin: 12px 0 0; color: var(--amber); font-size: clamp(20px, 3vw, 32px); font-weight: 900; }
.hero-copy { max-width: 660px; margin: 28px 0 0; color: rgba(255,255,255,0.84); font-size: clamp(18px, 2.2vw, 24px); word-break: keep-all; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--mint); box-shadow: 0 16px 40px rgba(112,242,198,0.22); }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,0.34); background: rgba(255,255,255,0.08); }
.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: min(820px, 100%); margin: 56px 0 0; border-top: 1px solid rgba(255,255,255,0.18); }
.hero-metrics div { padding: 22px 22px 0 0; }
.hero-metrics dt { margin: 0 0 4px; color: var(--amber); font-size: 18px; font-weight: 900; }
.hero-metrics dd { margin: 0; color: rgba(255,255,255,0.75); font-size: 14px; }

.section { padding: 96px 0; }
.intro-strip { padding: 28px 0; background: var(--white); border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 24px; }
.intro-grid p { margin: 0; color: var(--ink-soft); font-size: 18px; font-weight: 900; word-break: keep-all; }
.split-layout, .contact-layout, .resources-layout { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 68px; align-items: start; }
.section h2 { margin: 0; max-width: 760px; font-size: clamp(32px, 5vw, 54px); line-height: 1.08; letter-spacing: 0; word-break: keep-all; }
.prose p, .section-heading p, .resources-layout p, .contact-layout > div > p, .banner-panel p { margin: 0 0 18px; color: var(--ink-soft); font-size: 18px; word-break: keep-all; }
.check-list { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--ink-soft); font-weight: 900; }
.check-list li::before { position: absolute; left: 0; top: 0.58em; width: 14px; height: 8px; border-left: 2px solid var(--mint-strong); border-bottom: 2px solid var(--mint-strong); content: ""; transform: rotate(-45deg); }
.section-muted { background: #edf4f2; }
.section-heading { max-width: 760px; margin-bottom: 40px; }
.section-heading.compact { margin-bottom: 26px; }

.banner-band { padding: 72px 0; background: var(--white); }
.banner-panel {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7fafc 0%, #e9f8f3 100%);
  box-shadow: var(--shadow);
}
.banner-visual {
  min-height: 240px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7,18,22,0.92), rgba(12,86,78,0.78)),
    radial-gradient(circle at 20% 20%, rgba(112,242,198,0.8), transparent 40%);
  background-size: cover;
  background-position: center;
}
.shopping-section {
  padding: 78px 0;
  background: var(--ink);
  color: var(--white);
}
.shopping-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255,255,255,0.08), rgba(112,242,198,0.1)),
    #071216;
}
.shopping-panel h2 { color: var(--white); }
.shopping-panel p { color: rgba(255,255,255,0.76); }
.platform-grid, .portfolio-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.platform-card, .portfolio-card { min-height: 310px; padding: 24px; background: var(--white); border: 1px solid rgba(7,18,22,0.08); border-radius: var(--radius); box-shadow: 0 14px 30px rgba(7,18,22,0.07); }
.portfolio-card { min-height: 250px; }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-bottom: 26px; color: var(--ink); background: var(--mint); border-radius: var(--radius); font-size: 13px; font-weight: 900; }
.platform-card:nth-child(2n) .card-icon { background: var(--amber); }
.platform-card:nth-child(3n) .card-icon { color: var(--white); background: var(--ink); }
.platform-card h3, .capability-list h3, .portfolio-card h3 { margin: 0 0 12px; font-size: 22px; line-height: 1.2; }
.platform-card p, .capability-list p, .portfolio-card p { margin: 0; color: var(--muted); word-break: keep-all; }
.platform-card a { display: inline-flex; margin-top: 24px; color: var(--mint-strong); font-weight: 900; }
.portfolio-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; color: var(--mint-strong); font-size: 13px; font-weight: 900; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tags span { padding: 5px 8px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink-soft); font-size: 12px; font-weight: 800; }
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--mint-strong);
  font-weight: 900;
}
.capability-list { border-top: 1px solid var(--line); }
.capability-list article { display: grid; grid-template-columns: 86px 220px 1fr; gap: 24px; align-items: start; padding: 26px 0; border-bottom: 1px solid var(--line); }
.capability-list span { color: var(--mint-strong); font-size: 18px; font-weight: 900; }
.section-dark { color: var(--white); background: var(--ink); }
.section-dark .section-kicker { color: var(--amber); }
.section-dark p { color: rgba(255,255,255,0.74); }
.resource-list { display: grid; gap: 12px; }
.resource-item { display: grid; gap: 6px; padding: 22px; border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius); background: rgba(255,255,255,0.06); transition: background 160ms ease, transform 160ms ease; }
.resource-item:hover, .resource-item:focus-visible { background: rgba(255,255,255,0.11); transform: translateY(-2px); }
.resource-item span { color: var(--mint); font-size: 13px; font-weight: 900; }
.resource-item strong { font-size: 22px; }
.resource-item small { color: rgba(255,255,255,0.68); }

.contact-section { background: var(--white); }
.contact-points { display: grid; gap: 10px; margin-top: 34px; }
.contact-points p { display: flex; gap: 14px; margin: 0; color: var(--ink-soft); }
.contact-points strong { min-width: 76px; color: var(--ink); }
.contact-points a { color: var(--mint-strong); font-weight: 900; }
.contact-form { display: grid; gap: 16px; padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
label { display: grid; gap: 8px; color: var(--ink); font-size: 14px; font-weight: 900; }
input, select, textarea { width: 100%; border: 1px solid #cad7da; border-radius: var(--radius); padding: 13px 14px; color: var(--ink); background: var(--white); outline: none; transition: border-color 160ms ease, box-shadow 160ms ease; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--mint-strong); box-shadow: 0 0 0 4px rgba(112,242,198,0.22); }
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-note { margin: 0; color: var(--muted); font-size: 13px; font-weight: 800; }
.site-footer { padding: 28px 0; background: #eef4f6; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 0.5fr 1.5fr; gap: 24px; align-items: start; }
.business-info { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 16px; color: var(--muted); font-size: 13px; font-weight: 800; }

@media (max-width: 980px) {
  .platform-grid, .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-layout, .contact-layout, .resources-layout, .intro-grid, .banner-panel, .shopping-panel { grid-template-columns: 1fr; gap: 34px; }
  .capability-list article { grid-template-columns: 64px 1fr; }
  .capability-list p { grid-column: 2; }
  .footer-inner { grid-template-columns: 1fr; }
  .business-info { justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .intro-loader { display: none; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1120px); }
  .site-header { height: 68px; padding: 0 14px; }
  .brand-text span { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a, .site-nav .nav-contact { padding: 13px 14px; border-radius: var(--radius); }
  .hero { min-height: 86svh; padding: 106px 0 42px; }
  .hero-copy { max-width: 100%; }
  .hero-metrics { grid-template-columns: 1fr; margin-top: 40px; }
  .hero-metrics div { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .section { padding: 68px 0; }
  .platform-grid, .portfolio-grid, .form-row { grid-template-columns: 1fr; }
  .platform-card, .portfolio-card { min-height: auto; }
  .capability-list article { grid-template-columns: 1fr; gap: 6px; }
  .capability-list p { grid-column: auto; }
  .contact-form, .banner-panel { padding: 18px; }
}

/* Professional B2B polish pass */
:root {
  --shadow-soft: 0 18px 45px rgba(7, 18, 22, 0.08);
  --shadow-strong: 0 26px 70px rgba(7, 18, 22, 0.16);
  --surface: #fbfdfd;
}

body {
  background:
    linear-gradient(180deg, #f7fafc 0%, #eef6f5 42%, #f7fafc 100%);
}

a,
button,
.platform-card,
.portfolio-card,
.resource-item,
input,
select,
textarea {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

:focus-visible {
  outline: 3px solid rgba(112, 242, 198, 0.72);
  outline-offset: 3px;
}

.intro-loader {
  background:
    radial-gradient(circle at 50% 38%, rgba(112, 242, 198, 0.2), transparent 32%),
    linear-gradient(135deg, #071216 0%, #0c2429 55%, #071216 100%);
}

.intro-loader::before,
.intro-loader::after {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(112, 242, 198, 0.18);
  border-radius: 50%;
  content: "";
  animation: introRing 1.4s ease-in-out infinite alternate;
}

.intro-loader::after {
  width: 320px;
  height: 320px;
  border-color: rgba(245, 184, 90, 0.14);
  animation-delay: 220ms;
}

.intro-loader div {
  position: relative;
  z-index: 1;
  padding: 26px 32px;
}

.intro-loader span {
  text-shadow: 0 0 34px rgba(112, 242, 198, 0.32);
}

@keyframes introRing {
  from { transform: scale(0.92); opacity: 0.46; }
  to { transform: scale(1.08); opacity: 1; }
}

.site-header {
  position: sticky;
  background: rgba(247, 250, 252, 0.82);
}

.brand {
  min-width: 220px;
}

.brand-mark {
  flex: 0 0 auto;
  box-shadow: 0 12px 28px rgba(7, 18, 22, 0.14);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--mint-strong);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: var(--mint-strong);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-contact {
  box-shadow: 0 14px 30px rgba(7, 18, 22, 0.12);
}

.site-nav .nav-contact:hover {
  color: var(--ink);
  background: var(--mint);
  transform: translateY(-1px);
}

.site-nav .nav-contact::after {
  display: none;
}

.hero {
  min-height: 88svh;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(247, 250, 252, 0.08));
  content: "";
  pointer-events: none;
}

#nexus-canvas {
  opacity: 0.92;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7,18,22,0.98) 0%, rgba(7,18,22,0.82) 46%, rgba(7,18,22,0.38) 100%),
    linear-gradient(180deg, rgba(7,18,22,0.12) 0%, rgba(7,18,22,0.84) 100%);
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(56px, 9vw, 112px);
  text-wrap: balance;
}

.hero-copy {
  line-height: 1.72;
}

.button {
  gap: 8px;
  min-height: 52px;
  border-radius: 10px;
}

.button-primary:hover {
  background: #8dffd8;
  box-shadow: 0 18px 45px rgba(112, 242, 198, 0.28);
}

.button-secondary:hover {
  border-color: rgba(112, 242, 198, 0.56);
  background: rgba(112, 242, 198, 0.12);
}

.hero-metrics {
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-metrics div {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.section {
  padding: 104px 0;
}

.section-heading {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  max-width: 680px;
  margin-inline: auto;
}

.split-layout {
  align-items: center;
}

.prose {
  padding: 28px;
  border: 1px solid rgba(7, 18, 22, 0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-soft);
}

.check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.check-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 12px 12px 42px;
  border: 1px solid #dce9e8;
  border-radius: 10px;
  background: #f8fbfb;
}

.check-list li::before {
  left: 16px;
  top: 50%;
  transform: translateY(-58%) rotate(-45deg);
}

.banner-panel,
.shopping-panel {
  border-radius: 16px;
  box-shadow: var(--shadow-strong);
}

.banner-visual {
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.banner-visual::before,
.banner-visual::after {
  position: absolute;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  content: "";
}

.banner-visual::before {
  left: 24px;
  right: 54px;
  top: 32px;
  height: 72px;
}

.banner-visual::after {
  left: 64px;
  right: 24px;
  bottom: 34px;
  height: 104px;
}

.platform-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.platform-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,252,252,0.96));
  border-color: rgba(7,18,22,0.1);
  overflow: visible;
}

.platform-card:hover,
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(112, 242, 198, 0.55);
  box-shadow: var(--shadow-strong);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.card-icon {
  margin-bottom: 0;
}

.card-status {
  padding: 6px 9px;
  border: 1px solid #d7e8e5;
  border-radius: 999px;
  color: var(--mint-strong);
  background: #f0fbf7;
  font-size: 11px;
  font-weight: 900;
}

.platform-card h3 {
  min-height: 54px;
  display: flex;
  align-items: flex-end;
}

.platform-card p {
  flex: 1;
  line-height: 1.72;
}

.card-link,
.platform-card a,
.text-link {
  align-self: flex-start;
  margin-top: 22px;
  padding: 9px 12px;
  border: 1px solid #cfe7e1;
  border-radius: 999px;
  color: var(--mint-strong);
  background: #f3fbf8;
  font-size: 14px;
  font-weight: 900;
}

.card-link:hover,
.platform-card a:hover,
.text-link:hover {
  color: var(--ink);
  border-color: var(--mint);
  background: var(--mint);
}

.capability-list {
  border-top: 2px solid #d5e3e4;
}

.capability-list article {
  padding: 30px 18px;
  border-bottom-color: #d5e3e4;
  border-radius: 12px;
}

.capability-list article:hover {
  background: rgba(255,255,255,0.72);
  box-shadow: 0 12px 30px rgba(7,18,22,0.06);
}

.capability-list span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #cfe7e1;
  border-radius: 50%;
  background: #f3fbf8;
}

#portfolio .section-heading {
  margin-bottom: 38px;
}

.portfolio-grid {
  max-width: 980px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto;
}

.portfolio-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.portfolio-media {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(7,18,22,0.92), rgba(12,86,78,0.72)),
    radial-gradient(circle at 80% 18%, rgba(112,242,198,0.38), transparent 30%);
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-placeholder {
  height: 100%;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 24px;
  color: #fff;
}

.portfolio-placeholder span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
}

.portfolio-placeholder strong {
  font-size: 36px;
  line-height: 1;
}

.portfolio-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.portfolio-meta {
  min-height: 28px;
  align-items: center;
  margin-bottom: 12px;
}

.portfolio-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef9f5;
}

.portfolio-card h3 {
  min-height: 56px;
}

.portfolio-card p {
  flex: 1;
  line-height: 1.72;
}

.tags {
  min-height: 32px;
}

.tags span {
  border-color: #d9e7e5;
  border-radius: 999px;
  background: #f8fbfb;
}

.resource-item {
  min-height: 118px;
  cursor: pointer;
}

.resource-item:hover {
  border-color: rgba(112,242,198,0.48);
}

.contact-layout {
  align-items: center;
}

.contact-form {
  border-radius: 16px;
  background: #fbfdfd;
  box-shadow: 0 20px 50px rgba(7,18,22,0.1);
}

input,
select,
textarea {
  min-height: 50px;
  border-radius: 10px;
}

input::placeholder,
textarea::placeholder {
  color: #9aabb2;
}

.has-error {
  border-color: #d94141 !important;
  box-shadow: 0 0 0 4px rgba(217, 65, 65, 0.12) !important;
}

.field-error {
  color: #b83232;
  font-size: 12px;
  font-weight: 800;
}

.contact-form.is-submitting {
  opacity: 0.82;
}

.contact-form.is-submitting .form-submit {
  pointer-events: none;
  background: #b5f7df;
}

@media (max-width: 1120px) {
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-content {
    max-width: 100%;
  }

  .check-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .brand {
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(46px, 16vw, 68px);
  }

  .hero-metrics {
    border-radius: 10px;
  }

  .hero-metrics div {
    border-right: 0;
  }

  .section {
    padding: 70px 0;
  }

  .platform-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .platform-card h3,
  .portfolio-card h3 {
    min-height: auto;
  }

  .capability-list article {
    padding: 22px 12px;
  }

  .button,
  .card-link,
  .text-link {
    width: 100%;
  }
}
