/* =========================================================
   ROOT
   ========================================================= */

:root {
  --bg: #070b12;
  --bg-elevated: #0b111b;
  --bg-soft: #0f1723;
  --bg-card: rgba(15, 23, 35, 0.82);

  --text: #eef4ff;
  --text-soft: #b7c2d3;
  --text-muted: #7f8b9c;

  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.15);

  --accent: #58a6ff;
  --accent-strong: #2f8cff;
  --accent-soft: rgba(88, 166, 255, 0.12);

  --green: #4ade80;
  --green-soft: rgba(74, 222, 128, 0.12);

  --gold: #f5c451;
  --gold-soft: rgba(245, 196, 81, 0.12);

  --purple: #a78bfa;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow:
    0 20px 60px rgba(0, 0, 0, 0.28);

  --container: 1180px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(34, 99, 190, 0.12),
      transparent 28rem
    ),
    radial-gradient(
      circle at 90% 15%,
      rgba(62, 180, 137, 0.07),
      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;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  color: #fff;
  background: rgba(47, 140, 255, 0.65);
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;

  z-index: 9999;

  padding: 0.7rem 1rem;

  border-radius: 8px;

  background: var(--accent);
  color: #06101e;

  font-weight: 800;
  text-decoration: none;

  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
  position: sticky;
  top: 0;

  z-index: 100;

  border-bottom: 1px solid var(--line);

  background: rgba(7, 11, 18, 0.78);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav__inner {
  width: min(calc(100% - 2rem), var(--container));

  min-height: 72px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 2rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(88, 166, 255, 0.34);
  border-radius: 12px;

  background: var(--accent-soft);

  color: #cde5ff;

  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;

  text-decoration: none;
}

.nav__links {
  display: flex;
  align-items: center;

  gap: 1.5rem;
}

.nav__links a {
  color: var(--text-soft);

  font-size: 0.9rem;
  font-weight: 650;

  text-decoration: none;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav__links a:hover {
  color: var(--text);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  overflow: hidden;

  min-height: 690px;

  display: flex;
  align-items: center;

  border-bottom: 1px solid var(--line);
}

.hero__content {
  position: relative;
  z-index: 2;

  width: min(calc(100% - 2rem), var(--container));

  margin: 0 auto;

  padding: 8.5rem 0 7.5rem;
}

.hero__glow {
  position: absolute;

  width: 540px;
  height: 540px;

  border-radius: 50%;

  filter: blur(100px);

  opacity: 0.23;

  pointer-events: none;
}

.hero__glow--one {
  top: -180px;
  right: 3%;

  background: #2468d9;
}

.hero__glow--two {
  bottom: -320px;
  left: -180px;

  background: #116f66;
}

.hero-badge {
  display: inline-flex;
  align-items: center;

  margin-bottom: 1.5rem;

  padding: 0.48rem 0.8rem;

  border: 1px solid rgba(88, 166, 255, 0.24);
  border-radius: 999px;

  background: rgba(88, 166, 255, 0.08);

  color: #a9d1ff;

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero__intro {
  margin: 0 0 0.2rem;

  color: var(--text-muted);

  font-size: 1rem;
  font-weight: 650;
}

.hero h1 {
  max-width: 850px;

  margin: 0;

  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 880;

  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero__role {
  margin: 1.45rem 0 0;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 0.6rem;

  color: #d8e7f8;

  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 760;
}

.hero__role span {
  color: var(--accent);
}

.hero__description {
  max-width: 790px;

  margin: 1.6rem 0 0;

  color: var(--text-soft);

  font-size: clamp(1.03rem, 2vw, 1.2rem);
}

.hero__meta {
  margin-top: 1.8rem;

  display: flex;
  flex-wrap: wrap;

  gap: 0.75rem;
}

.hero__cert,
.hero__availability {
  display: inline-flex;
  align-items: center;

  min-height: 38px;

  padding: 0.45rem 0.75rem;

  border-radius: 9px;

  font-size: 0.82rem;
  font-weight: 750;
}

.hero__cert {
  border: 1px solid rgba(245, 196, 81, 0.2);

  background: var(--gold-soft);
  color: #f9d875;
}

.hero__availability {
  border: 1px solid rgba(74, 222, 128, 0.16);

  background: var(--green-soft);
  color: #95e8b1;
}

.hero__actions {
  margin-top: 2rem;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 0.75rem;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.7rem 1rem;

  border: 1px solid var(--line-strong);
  border-radius: 11px;

  font-size: 0.9rem;
  font-weight: 760;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

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

.button--primary {
  border-color: var(--accent);

  background: var(--accent);
  color: #05101f;
}

.button--primary:hover {
  background: #74b5ff;
}

.button--secondary {
  background: rgba(255, 255, 255, 0.055);
}

.button--secondary:hover,
.button--ghost:hover {
  border-color: rgba(88, 166, 255, 0.45);

  background: rgba(88, 166, 255, 0.08);
}

.button--ghost {
  background: transparent;

  color: var(--text-soft);
}

.button--text {
  border-color: transparent;

  color: #9fc9f7;

  background: transparent;
}


/* =========================================================
   PROOF STRIP
   ========================================================= */

.proof-strip {
  border-bottom: 1px solid var(--line);

  background: rgba(11, 17, 27, 0.76);
}

.proof-strip__inner {
  width: min(calc(100% - 2rem), var(--container));

  margin: 0 auto;

  display: grid;

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

.proof-item {
  min-height: 132px;

  padding: 1.75rem 1.5rem;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  margin-bottom: 0.4rem;

  color: #e8f2ff;

  font-size: 0.96rem;
}

.proof-item span {
  color: var(--text-muted);

  font-size: 0.82rem;
}


/* =========================================================
   PAGE
   ========================================================= */

.page {
  width: min(calc(100% - 2rem), var(--container));

  margin: 0 auto;
}

.section {
  padding: 7rem 0;

  border-bottom: 1px solid var(--line);
}

.section--compact {
  padding: 5rem 0;
}

.section--secondary {
  position: relative;

  padding-left: 1.5rem;
  padding-right: 1.5rem;

  margin-left: -1.5rem;
  margin-right: -1.5rem;

  background:
    linear-gradient(
      180deg,
      rgba(88, 166, 255, 0.025),
      rgba(88, 166, 255, 0)
    );
}

.section--quiet {
  opacity: 0.88;
}

.section-heading {
  max-width: 780px;

  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;

  margin-bottom: 0.75rem;

  color: var(--accent);

  font-size: 0.72rem;
  font-weight: 850;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.contact-panel h2 {
  margin: 0;

  color: #f5f9ff;

  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 830;

  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-description {
  max-width: 720px;

  margin: 1.2rem 0 0;

  color: var(--text-muted);

  font-size: 1rem;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-grid {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 2rem;
}

.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);

  background: var(--bg-card);

  box-shadow: var(--shadow);
}

.about-copy {
  padding: 2rem;
}

.about-copy p {
  margin: 0;

  color: var(--text-soft);

  font-size: 1.02rem;
}

.about-copy p + p {
  margin-top: 1.35rem;
}

.engineering-principles {
  display: grid;

  gap: 1rem;
}

.principle {
  padding: 1.4rem;

  display: grid;

  grid-template-columns: auto 1fr;

  gap: 1.1rem;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: rgba(255, 255, 255, 0.018);
}

.principle__number {
  color: var(--accent);

  font-size: 0.75rem;
  font-weight: 850;
}

.principle h3 {
  margin: 0 0 0.35rem;

  font-size: 1rem;
}

.principle p {
  margin: 0;

  color: var(--text-muted);

  font-size: 0.87rem;
}


/* =========================================================
   LIFECYCLE
   ========================================================= */

.lifecycle {
  padding: 1.5rem;

  display: grid;
  grid-template-columns:
    1fr auto
    1fr auto
    1fr auto
    1fr auto
    1fr;

  align-items: center;

  gap: 0.75rem;

  border: 1px solid var(--line);
  border-radius: var(--radius-lg);

  background: rgba(255, 255, 255, 0.018);
}

.lifecycle__item {
  min-height: 140px;

  padding: 1.2rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lifecycle__item span {
  margin-bottom: 0.6rem;

  color: var(--accent);

  font-size: 0.7rem;
  font-weight: 850;
}

.lifecycle__item strong {
  margin-bottom: 0.25rem;

  color: #eaf4ff;

  font-size: 1rem;
}

.lifecycle__item p {
  margin: 0;

  color: var(--text-muted);

  font-size: 0.78rem;
}

.lifecycle__arrow {
  color: rgba(88, 166, 255, 0.46);
}


/* =========================================================
   SKILLS
   ========================================================= */

.skills-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1rem;
}

.skill-card {
  padding: 1.5rem;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: rgba(255, 255, 255, 0.018);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.skill-card:hover {
  transform: translateY(-3px);

  border-color: rgba(88, 166, 255, 0.28);

  background: rgba(88, 166, 255, 0.035);
}

.skill-card__icon {
  color: var(--accent);

  font-size: 1.35rem;
}

.skill-card h3 {
  margin: 0.9rem 0 0.55rem;
}

.skill-card p {
  margin: 0;

  color: var(--text-muted);

  font-size: 0.86rem;
}


/* =========================================================
   FEATURED PROJECTS
   ========================================================= */

.featured-project {
  position: relative;

  margin-top: 1.5rem;

  padding: 2rem;

  overflow: hidden;

  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      135deg,
      rgba(88, 166, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    );

  box-shadow: var(--shadow);
}

.featured-project::after {
  content: "";

  position: absolute;
  inset: auto -70px -90px auto;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  background: rgba(88, 166, 255, 0.06);

  filter: blur(35px);

  pointer-events: none;
}

.featured-project--eks::after {
  background: rgba(74, 222, 128, 0.07);
}

.featured-project__top {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 1rem;

  margin-bottom: 2rem;
}

.project-number {
  margin-right: 0.7rem;

  color: var(--text-muted);

  font-size: 0.72rem;
  font-weight: 850;
}

.featured-project__eyebrow {
  color: #a8cbed;

  font-size: 0.72rem;
  font-weight: 850;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-status {
  padding: 0.42rem 0.65rem;

  border: 1px solid rgba(88, 166, 255, 0.23);
  border-radius: 999px;

  background: var(--accent-soft);
  color: #aad2ff;

  font-size: 0.69rem;
  font-weight: 850;

  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.project-status--validated {
  border-color: rgba(74, 222, 128, 0.2);

  background: var(--green-soft);
  color: #9de5b5;
}

.featured-project__content {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 3rem;
}

.featured-project__main h3 {
  margin: 0;

  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 830;

  letter-spacing: -0.04em;
}

.project-lead {
  margin: 1rem 0;

  color: #d6e5f5;

  font-size: 1.05rem;
  font-weight: 650;
}

.featured-project__main > p:not(.project-lead) {
  max-width: 720px;

  color: var(--text-soft);

  font-size: 0.94rem;
}

.project-evidence {
  padding: 1.4rem;

  align-self: start;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: rgba(3, 7, 12, 0.36);
}

.project-evidence__label {
  display: block;

  margin-bottom: 0.9rem;

  color: var(--accent);

  font-size: 0.7rem;
  font-weight: 850;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-row {
  padding: 0.85rem 0;

  display: flex;
  flex-direction: column;

  border-top: 1px solid var(--line);
}

.evidence-row:first-of-type {
  border-top: 0;
}

.evidence-row strong {
  color: #edf6ff;

  font-size: 0.88rem;
}

.evidence-row span {
  margin-top: 0.15rem;

  color: var(--text-muted);

  font-size: 0.78rem;
}


/* =========================================================
   TECH STACK
   ========================================================= */

.tech-stack {
  margin-top: 1.4rem;

  display: flex;
  flex-wrap: wrap;

  gap: 0.45rem;
}

.tech-stack span,
.mini-stack span {
  display: inline-flex;

  padding: 0.35rem 0.55rem;

  border: 1px solid rgba(88, 166, 255, 0.15);
  border-radius: 999px;

  background: rgba(88, 166, 255, 0.07);

  color: #9fcafb;

  font-size: 0.7rem;
  font-weight: 700;
}


/* =========================================================
   PROJECT ACTIONS
   ========================================================= */

.project-actions {
  margin-top: 1.5rem;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 1rem;
}

.project-actions a,
.project-card__link,
.product-card > a {
  color: #8fc5ff;

  font-size: 0.85rem;
  font-weight: 800;

  text-decoration: none;

  transition: color 0.2s ease;
}

.project-actions a:hover,
.project-card__link:hover,
.product-card > a:hover {
  color: #c1e0ff;
}


/* =========================================================
   PLATFORM PROJECT GRID
   ========================================================= */

.projects-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 1rem;
}

.project-card {
  padding: 1.7rem;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--line);
  border-radius: var(--radius-lg);

  background: rgba(255, 255, 255, 0.018);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.project-card:hover {
  transform: translateY(-3px);

  border-color: rgba(88, 166, 255, 0.28);

  background: rgba(88, 166, 255, 0.028);
}

.project-card--accent {
  border-color: rgba(88, 166, 255, 0.19);

  background:
    linear-gradient(
      145deg,
      rgba(88, 166, 255, 0.035),
      rgba(255, 255, 255, 0.015)
    );
}

.project-card__category {
  margin-bottom: 0.8rem;

  color: var(--accent);

  font-size: 0.69rem;
  font-weight: 850;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;

  color: #edf6ff;

  font-size: 1.25rem;
}

.project-card > p {
  margin: 0.9rem 0 0;

  color: var(--text-muted);

  font-size: 0.88rem;
}

.project-card__proof {
  margin: 1rem 0 0;
  padding-left: 1rem;

  color: var(--text-soft);
}

.project-card__proof li {
  margin: 0.32rem 0;

  font-size: 0.78rem;
}

.project-card__link {
  margin-top: auto;
  padding-top: 1.4rem;
}


/* =========================================================
   PRODUCT ENGINEERING
   ========================================================= */

.product-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 1rem;
}

.product-card {
  padding: 1.7rem;

  border: 1px solid var(--line);
  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      145deg,
      rgba(167, 139, 250, 0.04),
      rgba(255, 255, 255, 0.015)
    );
}

.product-card__label {
  color: #c5b7fb;

  font-size: 0.68rem;
  font-weight: 850;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0.65rem 0;

  font-size: 1.35rem;
}

.product-card p {
  color: var(--text-muted);

  font-size: 0.88rem;
}

.product-card__evidence {
  margin-top: 1rem;

  display: grid;

  gap: 0.45rem;
}

.product-card__evidence span {
  color: var(--text-soft);

  font-size: 0.77rem;
}

.product-card > a {
  display: inline-block;

  margin-top: 1.3rem;
}


/* =========================================================
   OTHER BUILDS
   ========================================================= */

.other-builds {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 1rem;
}

.other-build {
  padding: 1.4rem;

  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);

  background: rgba(255, 255, 255, 0.012);
}

.other-build__label {
  color: var(--text-muted);

  font-size: 0.68rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.other-build h3 {
  margin: 0.35rem 0 0;
}

.other-build p {
  color: var(--text-muted);

  font-size: 0.84rem;
}

.mini-stack {
  display: flex;
  flex-wrap: wrap;

  gap: 0.4rem;
}

.quiet-note {
  max-width: 700px;

  margin: 1.4rem 0 0;

  color: var(--text-muted);

  font-size: 0.78rem;
}


/* =========================================================
   CERTIFICATIONS
   ========================================================= */

.cert-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 1rem;
}

.cert-card {
  padding: 1.45rem;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: rgba(255, 255, 255, 0.018);
}

.cert-card--primary {
  border-color: rgba(245, 196, 81, 0.22);

  background:
    linear-gradient(
      145deg,
      rgba(245, 196, 81, 0.055),
      rgba(255, 255, 255, 0.015)
    );
}

.cert-card__provider {
  color: #f2c75f;

  font-size: 0.68rem;
  font-weight: 900;

  letter-spacing: 0.1em;
}

.cert-card h3 {
  margin: 0.7rem 0 0.45rem;

  color: #eff6ff;

  font-size: 1rem;
}

.cert-card p {
  margin: 0;

  color: var(--text-muted);

  font-size: 0.78rem;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-panel {
  position: relative;

  overflow: hidden;

  padding: clamp(2rem, 6vw, 4rem);

  border: 1px solid rgba(88, 166, 255, 0.18);
  border-radius: var(--radius-lg);

  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(88, 166, 255, 0.12),
      transparent 22rem
    ),
    rgba(255, 255, 255, 0.018);

  box-shadow: var(--shadow);
}

.contact-panel p {
  max-width: 740px;

  color: var(--text-soft);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  border-top: 1px solid var(--line);
}

.footer__inner {
  width: min(calc(100% - 2rem), var(--container));

  min-height: 110px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 1rem;

  color: var(--text-muted);

  font-size: 0.78rem;
}


/* =========================================================
   FOCUS STATES
   ========================================================= */

a:focus-visible {
  outline: 3px solid rgba(88, 166, 255, 0.5);
  outline-offset: 3px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(3) {
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

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

  .lifecycle__arrow {
    display: none;
  }

  .lifecycle__item {
    min-height: auto;

    border-bottom: 1px solid var(--line);
  }

  .lifecycle__item:last-child {
    border-bottom: 0;
  }

}


@media (max-width: 880px) {

  .nav__links {
    gap: 0.9rem;
  }

  .nav__links a:nth-child(3),
  .nav__links a:nth-child(4) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-top: 7rem;
    padding-bottom: 5.5rem;
  }

  .about-grid,
  .featured-project__content,
  .projects-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .featured-project__content {
    gap: 2rem;
  }

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

}


@media (max-width: 650px) {

  .nav__inner {
    min-height: 64px;
  }

  .nav__links a {
    display: none;
  }

  .nav__links a:last-child {
    display: inline-flex;
  }

  .hero__content {
    padding-top: 5.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  .hero__role {
    align-items: flex-start;
    flex-direction: column;

    gap: 0.15rem;
  }

  .hero__role span {
    display: none;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-strip__inner,
  .skills-grid,
  .cert-grid,
  .other-builds {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(3) {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .proof-item:first-child {
    border-top: 0;
  }

  .section {
    padding: 5rem 0;
  }

  .section--secondary {
    padding-left: 0;
    padding-right: 0;

    margin-left: 0;
    margin-right: 0;
  }

  .featured-project {
    padding: 1.4rem;
  }

  .featured-project__top {
    align-items: flex-start;
  }

  .project-status {
    white-space: nowrap;
  }

  .footer__inner {
    padding: 1.5rem 0;

    align-items: flex-start;
    flex-direction: column;

    justify-content: center;
  }

}


@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
