:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --text-muted: rgba(0, 0, 0, 0.55);
  --text-logo: #1a1a1a;
  --accent: #d93d4d;
  --border: rgba(0, 0, 0, 0.10);
  --display: 'Lora', Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
}


/* Skip link — visually hidden until focused */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.1s;
}
.skip-link:focus {
  top: 16px;
}

/* Global focus indicator */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f9f7f2;
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 700px;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.052) 0px, rgba(0, 0, 0, 0.052) 1px,
      transparent 1px, transparent 28px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.052) 0px, rgba(0, 0, 0, 0.052) 1px,
      transparent 1px, transparent 28px
    );
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 92%);
  mask-image: linear-gradient(to bottom, black 40%, transparent 92%);
}

/* Subtle blush: home page only (class added by orbs.js when .hero exists) */
body.has-red-hero {
  background-image: linear-gradient(
    180deg,
    rgba(217, 61, 77, 0.11) 0px,
    rgba(217, 61, 77, 0.05) 220px,
    transparent 420px
  );
  background-repeat: no-repeat;
  background-size: 100% 420px;
}

/* Ambient orbs — injected by orbs.js */

.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 824px;
  height: 824px;
  background: rgba(217, 61, 77, 0.11);
  filter: blur(80px);
  top: -232px;
  right: -280px;
  animation: orb-drift-1 14s ease-in-out infinite;
  will-change: transform;
}

.orb-2 {
  width: 704px;
  height: 704px;
  background: rgba(255, 130, 70, 0.07);
  filter: blur(80px);
  bottom: -180px;
  left: -208px;
  animation: orb-drift-2 22s ease-in-out infinite;
  animation-delay: -8s;
  will-change: transform;
}

@keyframes orb-drift-1 {
  0%   { transform: translate(0,    0); }
  25%  { transform: translate(-90px, 110px); }
  50%  { transform: translate(-30px, 200px); }
  75%  { transform: translate( 70px, 90px); }
  100% { transform: translate(0,    0); }
}

@keyframes orb-drift-2 {
  0%   { transform: translate(0,    0); }
  30%  { transform: translate(110px, -90px); }
  60%  { transform: translate( 55px, -180px); }
  80%  { transform: translate(-50px, -70px); }
  100% { transform: translate(0,    0); }
}

@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sticky header */

.site-header {
  position: static;
  z-index: 100;
}

/* Nav */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

nav .logo {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--text-logo);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.15s ease;
}

nav .logo:hover {
  opacity: 0.8;
}

nav .links {
  display: flex;
  gap: 24px;
}

nav .links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.15s ease;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
}

nav .links a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

nav .links a:hover,
nav .links a.active {
  color: var(--accent);
}

/* Hero */

.hero {
  padding: 32px 0 40px;
  display: flex;
  flex-direction: column;
}

.hero-top {
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero h1 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
}

/* Hero visual slot */

.hero-visual {
  flex-shrink: 0;
  align-self: flex-start;
  padding-top: 8px;
}

.hero-portrait {
  width: 320px;
  position: relative;
  transform: rotate(-2deg);
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.35));
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.hero-portrait:hover {
  transform: rotate(0deg);
  filter: drop-shadow(0 32px 56px rgba(0, 0, 0, 0.52));
}

/* Hero portrait images — default + hover crossfade */
.portrait-default {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.portrait-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portrait-wrapper:hover .portrait-default {
  opacity: 0;
}

.portrait-wrapper:hover .portrait-hover {
  opacity: 1;
}


/* Portrait wrapper + hover label */

.portrait-wrapper {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.portrait-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 9px 18px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (hover: hover) {
  .portrait-wrapper:hover .portrait-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}



.hero h1 em,
.hero h1 .accent {
  font-style: normal;
}

/* School-paper highlight on h1 words */
.hero h1 mark {
  --mark-color: hsl(46, 68%, 81%);
  display: inline-block;
  position: relative;
  background-color: transparent;
  color: inherit;
  isolation: isolate;
}

.hero h1 mark::before {
  content: '';
  position: absolute;
  width: calc(100% + 0.6ch);
  left: -0.2ch;
  height: 112%;
  top: -6%;
  border-bottom-right-radius: 20px 30px;
  background-color: var(--mark-color);
  opacity: 0;
  box-shadow:
    inset -2px 0px 1px hsl(from var(--mark-color) h s calc(l - 18)),
    inset -4px 0px 5px hsl(from var(--mark-color) h s calc(l - 18));
  filter: url(#filter-rough);
  z-index: -1;
  transition: opacity 0.4s ease;
}

.hero h1 mark::after {
  content: '';
  position: absolute;
  height: 0.9ch;
  width: 0.4ch;
  top: 3px;
  right: -0.2em;
  background: radial-gradient(
    hsl(from var(--mark-color) h s calc(l - 28)),
    hsl(from var(--mark-color) h s l)
  );
  opacity: 0;
  border-radius: 10px 0 50px/200px 0;
  rotate: 15deg;
  filter: url(#filter-rough);
  z-index: -1;
  transition: opacity 0.3s ease;
}

/* Always visible highlight */
.hero mark::before {
  opacity: 0.72;
}
.hero mark::after {
  opacity: 0.35;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
  margin-top: 28px;
}

.hero-desc strong {
  color: var(--text);
  font-weight: 600;
}

/* Section headings */

.section-label {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Project list */

.projects {
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-card {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  min-height: 210px;
  transition: border-color 0.25s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}

/* Thumbnail — left column */

.project-card .thumb {
  width: 320px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.project-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .thumb img {
  transform: scale(1.05);
}

/* Per-card thumb tints — visible when image loads or as fallback */
.thumb-1 { background: rgba(217, 61,  77,  0.08); }
.thumb-2 { background: rgba(255, 190, 50,  0.10); }
.thumb-3 { background: rgba(80,  160, 255, 0.10); }
.thumb-4 { background: rgba(255, 110, 80,  0.10); }
.thumb-5 { background: rgba(100, 180, 120, 0.10); }

/* Text body — right column */

.project-card .body {
  flex: 1;
  min-width: 0;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
}

.project-card .num {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 14px;
  transition: color 0.2s ease;
}

.project-card:hover .num {
  color: var(--accent);
}

.project-card h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.project-card:hover h2 {
  color: var(--accent);
}

.project-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}

/* Contact section */

.contact {
  padding: 64px 0 96px;
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.contact-text {
  flex: 1;
}

.contact-ufo {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 28px;
  object-fit: cover;
}

.contact-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: 34px;
  letter-spacing: 0.005em;
  margin: 16px 0 16px;
}

.contact-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.contact-cta--outline {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1.5px var(--text);
}

.contact-cta--outline:hover {
  background: var(--text);
  color: #ffffff;
  box-shadow: none;
}

/* Footer */

footer {
  padding: 48px 0 64px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 14px;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

footer a:hover {
  color: var(--accent);
}

/* Case study pages */

/* Case study metadata strip */

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 36px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 80px;
}

.meta-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.meta-value {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text);
}

/* Case study pages */

.case-header {
  padding: 80px 0 40px;
}

.case-header .kicker {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.case-header h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: 0.005em;
  margin-bottom: 20px;
}

.case-header .dek {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
}

.case-body {
  padding-bottom: 96px;
}

.case-body h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.005em;
  margin: 48px 0 16px;
}

.case-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 32px 0 12px;
}

.case-body p {
  margin-bottom: 16px;
  color: var(--text);
}

.case-body ul {
  margin: 0 0 16px 20px;
}

.case-body li {
  margin-bottom: 10px;
}

.case-body strong {
  font-weight: 600;
}

.figure {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 40px;
  margin-bottom: 40px;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 14px;
}

.figure img {
  width: 100%;
  height: auto;
  display: block;
}

.figure figcaption {
  padding: 12px 24px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.5;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fig-title {
  font-family: var(--display);
  font-size: 18px;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.fig-desc {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.5;
}

/* Prototype link */

.prototype-link {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  margin: 24px 0 8px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  background: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.prototype-link:hover {
  border-color: var(--accent);
  background: rgba(217, 61, 77, 0.03);
}

.prototype-link-label {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.prototype-link-cta {
  font-family: var(--display);
  font-size: 18px;
  color: var(--accent);
}

.case-nav {
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  margin-top: 32px;
}

.case-nav a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--display);
  font-size: 18px;
  transition: color 0.15s ease;
}

.case-nav a:hover {
  color: var(--accent);
}

/* About page */

.about-hero {
  padding: 80px 0 40px;
}

.about-hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.about-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.25;
  letter-spacing: 0.005em;
  flex: 1;
}

.about-pic {
  width: 300px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.about-body {
  padding-bottom: 64px;
}

.about-body p {
  margin-bottom: 20px;
  max-width: 600px;
}

.bring-list {
  padding: 8px 0 64px;
}

.bring-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.bring-item h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 23px;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.bring-item p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 540px;
}

/* Desktop-only "What I bring" dark section */
@media (min-width: 601px) {
  .bring-list {
    background: #1a1a1a;
    padding: 80px 0 88px;
    margin-top: 16px;
  }

  .bring-list .section-label {
    color: var(--accent);
    margin-bottom: 40px;
  }

  .bring-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 56px;
  }

  .bring-list .bring-item {
    border-top-color: rgba(255, 255, 255, 0.10);
    padding: 32px 0;
  }

  .bring-list .bring-item h3 {
    color: #ffffff;
    font-size: 20px;
  }

  .bring-list .bring-item p {
    color: rgba(255, 255, 255, 0.60);
    max-width: none;
  }
}

/* Experience timeline */
.experience-list {
  padding: 8px 0 64px;
}

.exp-item {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding: 28px 0;
  align-items: flex-start;
}

.exp-logo {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  margin-top: 2px;
}

.exp-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.exp-body {
  flex: 1;
  min-width: 0;
}

.exp-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}

.exp-role {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.exp-dates {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}

.exp-company-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

a.exp-company {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

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

.exp-parent {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
}

.exp-parent a {
  color: inherit;
  text-decoration: none;
}

.exp-parent a:hover {
  text-decoration: underline;
}

.exp-parent a:hover {
  text-decoration: underline;
}

.exp-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0;
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-reveal base — JS adds .anim to targets */
.anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ufo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

@keyframes pic-enter {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pic-float {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50%      { transform: translateY(-10px) rotate(0.5deg); }
}

@media (prefers-reduced-motion: no-preference) {
  /* Page entry */
  nav            { animation: fade-up 0.45s ease both; }
  .hero h1       { animation: fade-up 0.6s 0.08s ease both; }
  .hero-visual   { animation: fade-up 0.6s 0.16s ease both; }
  .hero-desc     { animation: fade-up 0.5s 0.26s ease both; }
  .case-header   { animation: fade-up 0.6s ease both; }

  .contact-ufo   { animation: ufo-float 4s ease-in-out infinite; }

  .about-pic {
    animation: pic-enter 0.7s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  }
}

@media (prefers-reduced-motion: reduce) {
  .anim { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@media (max-width: 600px) {

  /* ── Layout ── */
  .wrap {
    padding: 0 16px;
  }

  /* ── Nav ── */
  nav {
    padding: 14px 0;
  }
  nav .links {
    gap: 16px;
  }

  /* ── Hero ── */
  .hero {
    padding: 20px 0 28px;
  }
  .hero-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .hero-visual {
    display: none;
  }
  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }
  .hero-desc {
    font-size: 15px;
    margin-top: 20px;
  }

  /* ── Project cards ── */
  .project-card {
    flex-direction: column;
    min-height: unset;
  }
  .project-card .thumb {
    width: 100%;
    height: 200px;
  }
  .project-card .body {
    padding: 18px 18px 22px;
  }
  .project-card h2 {
    font-size: 20px;
  }

  /* ── Contact section ── */
  .contact-inner {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .contact-ufo {
    width: 80px;
    height: 80px;
  }
  .contact-heading {
    font-size: 26px;
    margin: 10px 0 12px;
  }

  /* ── Case study header ── */
  .case-header h1 {
    font-size: 26px;
    line-height: 1.3;
  }
  .case-header .dek {
    font-size: 15px;
  }
  .case-meta {
    gap: 16px 24px;
  }
  .meta-value {
    font-size: 14px;
  }

  /* ── Case body ── */
  .case-body h2 {
    font-size: 20px;
  }
  .case-body h3 {
    font-size: 17px;
  }
  .case-body p,
  .case-body li {
    font-size: 15px;
  }
  .case-nav {
    flex-direction: column;
    gap: 12px;
  }
  .prototype-link {
    width: 100%;
    box-sizing: border-box;
  }

  /* ── About page ── */
  .about-pic {
    display: none;
  }
  .about-hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }
  .about-body p {
    font-size: 15px;
  }
  .bring-item h3 {
    font-size: 17px;
  }
  .bring-item p {
    font-size: 15px;
  }
  .exp-item {
    gap: 14px;
  }
  .exp-header {
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
  }
  .exp-dates {
    white-space: normal;
  }

  /* ── Orbs ── */
  .orb-1 {
    width: 220px;
    height: 220px;
    top: -60px;
    right: -80px;
    filter: blur(45px);
  }
  .orb-2 {
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: -70px;
    filter: blur(45px);
  }
}
