:root {
  color-scheme: light;
  --paper: #f6f7f2;
  --surface: #ffffff;
  --ink: #18211f;
  --muted: #5f6b66;
  --line: #dce2db;
  --teal: #0f766e;
  --teal-dark: #12312b;
  --coral: #e4572e;
  --leaf: #78a22f;
  --amber: #d9a321;
  --shadow: 0 18px 50px rgba(24, 33, 31, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

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

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(24, 33, 31, 0.1);
  background: rgba(246, 247, 242, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal-dark);
  color: var(--paper);
  font-weight: 800;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.top-links a {
  min-height: 38px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
}

.top-links a:hover,
.top-links a:focus-visible {
  background: #e7ece6;
  color: var(--ink);
  outline: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(500px, 68vh, 680px);
  overflow: hidden;
  padding: 72px 32px 86px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(246, 247, 242, 0.74);
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: var(--paper);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #dfe6df;
}

.hero-shot {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-shot-main {
  right: max(24px, 7vw);
  bottom: 10%;
  width: min(760px, 62vw);
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(24, 33, 31, 0.16);
  border-radius: 8px;
}

.hero-shot-side {
  right: max(32px, 4vw);
  top: 13%;
  width: min(360px, 30vw);
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(24, 33, 31, 0.18);
  border-radius: 8px;
}

.hero-copy {
  width: min(720px, 100%);
  margin: 0 auto;
  transform: translateX(-18%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-text {
  width: min(560px, 100%);
  margin: 24px 0 0;
  color: #2d3935;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.button,
.icon-link,
.asset-actions a,
.domain-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 720;
  text-decoration: none;
}

.button {
  padding: 0 18px;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--teal-dark);
  color: var(--paper);
}

.button.secondary {
  border-color: rgba(24, 33, 31, 0.2);
  background: rgba(255, 255, 255, 0.8);
}

.icon-link {
  width: 44px;
  border: 1px solid rgba(24, 33, 31, 0.2);
  background: var(--surface);
  font-size: 1.16rem;
}

.button:hover,
.button:focus-visible,
.icon-link:hover,
.icon-link:focus-visible,
.asset-actions a:hover,
.asset-actions a:focus-visible,
.domain-row button:hover,
.domain-row button:focus-visible {
  outline: 2px solid rgba(15, 118, 110, 0.34);
  outline-offset: 2px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 72px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: 0;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.asset-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.asset-visual,
.service-visual {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eef1eb;
}

.asset-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asset-body {
  display: flex;
  min-height: 260px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
}
.asset-card.compact .asset-body {
  min-height: 220px;
}

.asset-card.issue-card {
  border-color: #e5b0a5;
}

.asset-type {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.asset-body h3 {
  margin: 0;
  font-size: 1.34rem;
  letter-spacing: 0;
}

.asset-body p:not(.asset-type) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.asset-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.asset-actions a {
  min-width: 90px;
  padding: 0 14px;
  background: #e8f0eb;
  color: #0f4f49;
}

.asset-actions code {
  color: var(--muted);
}

.service-visual {
  padding: 16px;
  background: #1c2421;
  color: #f7f8f5;
}

.terminal-bar {
  display: flex;
  gap: 7px;
  height: 22px;
}

.terminal-bar span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.terminal-bar span:nth-child(2) {
  background: var(--amber);
}

.terminal-bar span:nth-child(3) {
  background: var(--leaf);
}

.service-visual pre {
  margin: 18px 0 0;
  white-space: pre-wrap;
  font-size: clamp(0.78rem, 1.2vw, 0.98rem);
  line-height: 1.7;
}

.domain-section {
  padding-top: 16px;
}

.domain-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.domain-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.2fr) minmax(170px, 1.1fr) minmax(94px, 0.6fr) minmax(82px, 0.4fr);
  min-height: 58px;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
}

.domain-row:first-child {
  border-top: 0;
}

.table-head {
  min-height: 48px;
  background: #eef1eb;
  color: #47534f;
  font-size: 0.82rem;
  font-weight: 780;
  text-transform: uppercase;
}

.domain-row button {
  width: 72px;
  min-height: 38px;
  border: 1px solid #cbd7d1;
  background: #f8faf6;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 720;
}

.status.live {
  background: #e3f0d4;
  color: #355915;
}

.status.pending {
  background: #fff0cc;
  color: #735105;
}
.status.issue {
  background: #ffe0dc;
  color: #8a2b18;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 32px 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-copy {
    transform: none;
  }

  .hero-shot-main {
    right: -120px;
    width: 760px;
    opacity: 0.58;
  }

  .hero-shot-side {
    display: none;
  }

  .asset-grid {
    grid-template-columns: 1fr;
  }

  .asset-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .asset-visual,
  .service-visual {
    height: 100%;
    min-height: 260px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 18px;
  }

  .top-links {
    width: 100%;
    justify-content: space-between;
  }

  .top-links a {
    flex: 1;
    text-align: center;
  }

  .hero {
    min-height: 520px;
    padding: 58px 20px 70px;
  }

  .hero-shot-main {
    right: -250px;
    bottom: 7%;
    width: 720px;
  }

  .hero::before {
    background: rgba(246, 247, 242, 0.82);
  }

  h1 {
    font-size: clamp(3.6rem, 20vw, 5.8rem);
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding-bottom: 48px;
  }

  .section-heading {
    display: block;
  }

  .asset-card {
    display: flex;
  }

  .asset-visual,
  .service-visual {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .asset-body {
    min-height: 230px;
    padding: 18px;
  }

  .domain-table {
    border: 0;
    background: transparent;
  }

  .domain-row,
  .table-head {
    grid-template-columns: 1fr;
  }

  .domain-row {
    margin-bottom: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
  }

  .table-head {
    display: none;
  }

  .domain-row button {
    width: 100%;
  }
}
