@font-face {
  font-family: "Faktum";
  src:
    local("Faktum Light"),
    local("Faktum-Light"),
    url("./assets/fonts/Faktum-Light.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Faktum";
  src:
    local("Faktum Regular"),
    local("Faktum-Regular"),
    url("./assets/fonts/Faktum-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Faktum";
  src:
    local("Faktum Medium"),
    local("Faktum-Medium"),
    url("./assets/fonts/Faktum-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Faktum";
  src:
    local("Faktum SemiBold"),
    local("Faktum-SemiBold"),
    url("./assets/fonts/Faktum-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --brand: #00837f;
  --brand-strong: #006865;
  --accent: #7ec9c5;
  --ink: #000000;
  --white: #ffffff;
  --paper: #f6f6f6;
  --hero-line: rgba(255, 255, 255, 0.12);
  --hero-card: rgba(255, 255, 255, 0.04);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --font-display: "Faktum", "Public Sans", "Helvetica Neue", sans-serif;
  --font-body: "Public Sans", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 131, 127, 0.14), transparent 26%),
    radial-gradient(circle at right 18%, rgba(126, 201, 197, 0.12), transparent 22%),
    linear-gradient(180deg, #fcfcfb 0%, var(--paper) 100%);
  overflow-x: hidden;
}

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

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

.page-shell {
  width: min(920px, calc(100% - 40px));
  margin: 24px auto;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 131, 127, 0.26), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(126, 201, 197, 0.12), transparent 24%),
    linear-gradient(135deg, #020202 0%, #0d0d0d 52%, #161616 100%);
  color: var(--white);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-panel::before {
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.03), transparent 34%),
    linear-gradient(0deg, rgba(0, 131, 127, 0.08), transparent 24%);
}

.hero-panel::after {
  inset: auto 32px 32px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 131, 127, 0.2), transparent 68%);
}

.language-column,
.panel-stack {
  position: relative;
  z-index: 1;
  min-height: 100%;
}

.panel-stack {
  display: grid;
  gap: 28px;
  align-content: start;
}

.hero-content {
  display: grid;
  gap: 16px;
}

.brand-lockup {
  justify-self: start;
  width: clamp(138px, 12.65vw, 170px);
}

.brand-logo {
  width: 75%;
  height: auto;
}

.eyebrow {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -0.01em;
}

.hero-divider {
  width: 128px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 131, 127, 0.9), transparent);
}

.documents-panel {
  display: grid;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--hero-line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    var(--hero-card);
  backdrop-filter: blur(14px);
}

.section-heading {
  display: grid;
  gap: 8px;
}

.section-label {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.documents-panel .section-heading h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.44rem, 1.8vw, 1.78rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.documents-grid {
  display: grid;
  gap: 14px;
}

.doc-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--hero-line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(0, 131, 127, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.doc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.doc-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 131, 127, 0.16);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doc-name {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.doc-description {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.58;
  word-break: break-word;
}

.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(0, 131, 127, 0.24);
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.primary-button:hover {
  transform: translateY(-1px);
  background: var(--brand-strong);
}

.primary-button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(0, 131, 127, 0.2),
    0 14px 28px rgba(0, 131, 127, 0.24);
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 18px, 100%);
    margin: 10px auto 18px;
  }

  .hero-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .brand-logo {
    width: 100%;
  }

  .documents-panel,
  .doc-card {
    padding: 18px;
  }

  .doc-actions,
  .primary-button {
    width: 100%;
  }
}
