:root {
  --bg: #0c0f12;
  --bg-soft: #11161b;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --text: #f4f6f8;
  --muted: #a8b0b8;
  --line: rgba(255, 255, 255, 0.14);
  --silver: #dfe4e8;
  --silver-dark: #87919b;
  --accent: #f5f7f8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 18px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(206, 215, 222, 0.08), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

svg {
  display: block;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--accent);
  color: #111;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  color: var(--silver);
}

.brand-text {
  display: grid;
  line-height: 1.05;
  letter-spacing: 0.015em;
}

.brand-text strong {
  font-size: 0.98rem;
  font-weight: 710;
}

.brand-text span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: #c6ccd1;
  font-size: 0.9rem;
  font-weight: 570;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav .nav-contact {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact:focus-visible {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 82px;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(17, 22, 27, 0.72), transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(44px, 8vw, 104px);
}

.eyebrow,
.section-label {
  margin: 0 0 22px;
  color: #aeb6bd;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: #b9c1c8;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.7rem, 7.2vw, 6.8rem);
  font-weight: 560;
  letter-spacing: -0.062em;
  line-height: 0.94;
}

.hero h1 em {
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.052em;
  background: linear-gradient(110deg, #fcfdfe 0%, #9ca6af 54%, #edf0f3 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 590px;
  margin: 30px 0 0;
  color: #b7bec5;
  font-size: clamp(1.05rem, 2vw, 1.27rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 710;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
.contact-person a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.button-primary {
  background: #f3f5f7;
  color: #111418;
  box-shadow: 0 12px 34px rgba(237, 242, 246, 0.11);
}

.button-primary:hover {
  background: #fff;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: #e5e9ec;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.launch-note {
  max-width: 540px;
  margin: 28px 0 0;
  color: #7f8992;
  font-size: 0.83rem;
}

.hero-art {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-art::after {
  content: "";
  position: absolute;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-one {
  top: 58px;
  right: 32px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.32), rgba(145, 155, 164, 0.09) 45%, transparent 72%);
}

.orb-two {
  left: 12px;
  bottom: 34px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle at 45% 45%, rgba(204, 212, 220, 0.2), transparent 70%);
}

.forge-card {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(15, 19, 23, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(2deg);
}

.forge-card-top,
.forge-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.forge-card-top > span:first-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-style: italic;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8dee3;
  box-shadow: 0 0 0 7px rgba(216, 222, 227, 0.08);
}

.forge-card svg {
  width: 100%;
  margin: 20px 0 12px;
}

.forge-card-bottom {
  color: #8f99a2;
  font-size: 0.66rem;
  font-weight: 680;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  justify-content: space-between;
  gap: 80px;
}

.section h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 4.6vw, 4.4rem);
  font-weight: 530;
  letter-spacing: -0.047em;
  line-height: 1.03;
}

.about {
  background: #11161b;
}

.about-copy {
  align-self: end;
}

.about-copy p {
  margin: 0;
  color: #b7bec5;
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-copy p + p {
  margin-top: 22px;
}

.services {
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #0d1013;
  background-size: 80px 80px;
}

.section-heading {
  max-width: 850px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 62px;
}

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
}

.service-card .number {
  color: #77818a;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.15em;
}

.service-card h3 {
  margin: auto 0 16px;
  font-size: 1.32rem;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  color: #9ea7af;
  font-size: 0.93rem;
  line-height: 1.7;
}

.contact {
  background: #e9ecef;
  color: #111418;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: end;
  gap: 70px;
}

.contact .section-label {
  color: #606970;
}

.contact-action p {
  max-width: 470px;
  margin: 0 0 24px;
  color: #4e575e;
  font-size: 1.02rem;
}

.contact-list {
  display: grid;
  gap: 20px;
}

.contact-person {
  display: grid;
  gap: 4px;
}

.contact-person > span {
  color: #687178;
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-person a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid #717980;
  font-weight: 720;
  text-decoration: none;
}

.contact-person a span {
  transition: transform 160ms ease;
}

.contact-person a:hover span {
  transform: translate(3px, -3px);
}

.site-footer {
  padding: 30px 0;
  background: #090b0d;
}

.footer-inner,
.footer-brand {
  display: flex;
  align-items: center;
}

.footer-inner {
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  gap: 10px;
  color: #c5cbd0;
  font-size: 0.82rem;
  font-weight: 620;
}

.footer-mark {
  width: 26px;
  height: 26px;
}

.footer-meta {
  display: grid;
  gap: 4px;
  text-align: right;
}

.footer-inner p {
  margin: 0;
  color: #69737c;
  font-size: 0.74rem;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 160px;
  }

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

  .hero-grid {
    gap: 50px;
  }

  .hero-art {
    min-height: 430px;
  }

  .forge-card {
    width: min(92%, 540px);
  }

  .split-grid,
  .contact-panel {
    gap: 44px;
  }

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

  .service-card {
    min-height: 230px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .site-nav a:not(.nav-contact) {
    display: none;
  }

  .site-nav .nav-contact {
    padding: 8px 12px;
  }

  .hero {
    padding: 132px 0 68px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 16vw, 4.5rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    min-height: 340px;
  }

  .hero-art::before {
    width: 280px;
    height: 280px;
  }

  .hero-art::after {
    width: 350px;
    height: 350px;
  }

  .forge-card {
    padding: 20px;
    border-radius: 20px;
  }

  .section {
    padding: 80px 0;
  }

  .service-grid {
    margin-top: 42px;
  }

  .service-card {
    padding: 24px;
  }

  .contact-person a {
    font-size: 0.91rem;
    overflow-wrap: anywhere;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Supplied Silver Foundry brand artwork */
.brand {
  width: clamp(178px, 18vw, 230px);
}

.brand picture,
.logo-stage picture {
  display: block;
  width: 100%;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(27, 124, 255, 0.16));
}

.hero-art {
  isolation: isolate;
}

.hero-art::before {
  width: 430px;
  height: 430px;
  border-color: rgba(66, 151, 255, 0.09);
}

.hero-art::after {
  width: 560px;
  height: 560px;
  border-color: rgba(255, 255, 255, 0.045);
}

.logo-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 590px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 68% 45%, rgba(0, 103, 255, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  transform: rotate(1deg);
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 42px rgba(0, 77, 205, 0.24));
}

.eyebrow span {
  background: linear-gradient(90deg, #c7d7ea, #1686ff);
}

.footer-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(28, 124, 255, 0.2));
}

@media (max-width: 900px) {
  .hero-art {
    min-height: 460px;
  }

  .logo-stage {
    width: min(92%, 620px);
  }
}

@media (max-width: 620px) {
  .header-inner {
    gap: 14px;
  }

  .brand {
    width: clamp(154px, 51vw, 185px);
  }

  .hero-art {
    min-height: 330px;
  }

  .hero-art::before {
    width: 270px;
    height: 270px;
  }

  .hero-art::after {
    width: 350px;
    height: 350px;
  }

  .logo-stage {
    width: 100%;
    padding: 10px;
    border-radius: 22px;
  }

  .footer-mark {
    width: 38px;
    height: 38px;
  }
}
