html {
  scroll-behavior: smooth;
}

:root {
  --ink: #121417;
  --muted: #666d78;
  --soft: #f6f8f8;
  --line: rgba(18, 20, 23, 0.1);
  --cyan: #22d3ee;
  --teal: #2dd4bf;
  --lime: #a3e635;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  position: relative;
  overflow-x: hidden;
  color: var(--ink);
}

main,
section,
footer {
  position: relative;
  z-index: 1;
}

.laser-background {
  --laser-tilt: -12deg;
  --laser-cross-tilt: 13deg;
  --laser-shift: -21px;
  --laser-shift-reverse: 21px;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.42;
  mix-blend-mode: multiply;
  transition: opacity 180ms ease;
}

.laser-background.is-scrolling {
  opacity: 0.7;
}

.laser-background::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72vw, 920px);
  height: min(72vw, 920px);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(94, 234, 212, 0.24) 0%, rgba(34, 211, 238, 0.13) 32%, rgba(163, 230, 53, 0.1) 52%, transparent 72%);
  filter: blur(24px);
  transform: translate(-50%, -50%);
}

.laser-background::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 3%, rgba(94, 234, 212, 0.34) 4% 22%, rgba(163, 230, 53, 0.13) 38%, transparent 68%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
}

.laser-background__beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(132vw, 1680px);
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(34, 211, 238, 0) 11%, rgba(34, 211, 238, 0.72) 36%, rgba(94, 234, 212, 0.95) 50%, rgba(163, 230, 53, 0.76) 64%, rgba(163, 230, 53, 0) 89%, transparent 100%);
  box-shadow:
    0 0 10px rgba(34, 211, 238, 0.5),
    0 0 26px rgba(94, 234, 212, 0.34),
    0 0 46px rgba(163, 230, 53, 0.22);
  transform: translate(-50%, calc(-50% + var(--laser-shift))) rotate(var(--laser-tilt));
  transform-origin: 50% 50%;
}

.laser-background__beam--secondary {
  width: min(112vw, 1420px);
  height: 1px;
  opacity: 0.55;
  filter: blur(0.2px);
  transform: translate(-50%, calc(-50% + var(--laser-shift-reverse))) rotate(var(--laser-cross-tilt));
}

.laser-background__flare {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(28vw, 360px);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.75), transparent);
  filter: blur(0.4px);
  opacity: 0.58;
  transform-origin: 0 50%;
}

.laser-background__flare--one {
  transform: translate(-6px, -50%) rotate(58deg);
}

.laser-background__flare--two {
  transform: translate(-6px, -50%) rotate(122deg);
  background: linear-gradient(90deg, transparent, rgba(163, 230, 53, 0.64), transparent);
}

.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.social-row-isolated {
  display: flex;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px !important;
  margin: 0 10px !important;
  width: auto !important;
}

.jedi-social-icon {
  display: inline-flex !important;
  color: #888888 !important;
  text-decoration: none !important;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out !important;
}

.jedi-social-icon:hover {
  color: #000000 !important;
  transform: translateY(-2px) !important;
}

.jedi-social-icon svg {
  stroke: currentColor !important;
}

.brand-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 176px 24px 84px;
}

.brand-shell__content {
  width: min(1120px, 100%);
  text-align: center;
}

.brand-eyebrow,
.section-eyebrow,
.specimen__label {
  margin: 0;
  color: rgba(18, 20, 23, 0.56);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-headline {
  margin: 22px auto 0;
  max-width: 1040px;
  font-size: 4rem;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.brand-headline__base {
  display: inline;
  color: transparent;
  background: linear-gradient(135deg, #1d1d1f 0%, #0f766e 52%, #65a30d 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.simple-word {
  display: inline-block;
  white-space: nowrap;
}

.simple-word--hero {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: #0b0f0f;
}

.brand-copy {
  max-width: 620px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
  font-weight: 400;
  overflow-wrap: break-word;
}

.brand-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.brand-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.brand-button:hover {
  background: #000000;
  transform: translateY(-2px);
}

.brand-button--secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand-button--secondary:hover {
  background: #ffffff;
}

.contrast-principle,
.variant-gallery {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.contrast-principle {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: end;
  padding: 76px 0 34px;
  /**border-top: 1px solid var(--line);**/
}

.contrast-principle h2 {
  margin: 12px 0 0;
  max-width: 760px;
  font-size: 2.6rem;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.contrast-principle p:last-child {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: break-word;
}

.variant-gallery {
  padding: 38px 0 104px;
}

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

.specimen {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

.specimen__title {
  margin: 34px 0 0;
  max-width: 520px;
  font-size: 3.1rem;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.specimen__note {
  max-width: 440px;
  margin: 28px 0 0;
  color: rgba(18, 20, 23, 0.62);
  font-size: 0.95rem;
  line-height: 1.7;
}

.specimen--editorial .simple-word {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: #0f766e;
}

.specimen--mono {
  background: #101418;
  color: #f8fafc;
}

.specimen--mono .specimen__label,
.specimen--mono .specimen__note {
  color: rgba(248, 250, 252, 0.64);
}

.specimen--mono .specimen__title {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
}

.specimen--mono .simple-word {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  color: var(--lime);
}

.specimen--display .specimen__title {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
}

.specimen--display .simple-word {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 700;
  color: #0891b2;
}

.specimen--inverse {
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(163, 230, 53, 0.2)),
    #ffffff;
}

.specimen--inverse .specimen__title {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
}

.specimen--inverse .simple-word {
  padding: 0 0.16em 0.07em;
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
}

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

@media (min-width: 768px) {
  .brand-headline {
    font-size: 6.8rem;
  }
}

@media (max-width: 767px) {
  header > div:first-child {
    width: min(calc(100vw - 32px), 358px);
    max-width: min(calc(100vw - 32px), 358px);
    margin-left: 16px;
    margin-right: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .brand-shell {
    min-height: auto;
    padding: 138px 20px 62px;
    overflow-x: hidden;
  }

  .brand-shell__content {
    width: min(calc(100vw - 32px), 358px);
    max-width: min(calc(100vw - 32px), 358px);
    /**margin-left: 16px;
    margin-right: 16px;**/
  }

  .brand-headline {
    width: 100%;
    max-width: 100%;
    font-size: 2.55rem;
    line-height: 1.05;
  }

  .simple-word--hero {
    display: block;
    margin-top: 0.08em;
  }

  .brand-copy {
    width: 100%;
    max-width: 18.75rem;
    font-size: 1rem;
  }

  .contrast-principle,
  .variant-gallery {
    width: min(calc(100vw - 32px), 358px);
    max-width: min(calc(100vw - 32px), 358px);
    margin-left: 16px;
    margin-right: 0;
    overflow-x: hidden;
  }

  .contrast-principle {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 54px;
  }

  .contrast-principle h2 {
    max-width: 100%;
    font-size: 1.7rem;
    line-height: 1.12;
  }

  .contrast-principle p:last-child {
    max-width: 100%;
  }

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

  .specimen {
    min-height: 300px;
    padding: 24px;
  }

  .specimen__title {
    max-width: calc(100vw - 80px);
    font-size: 2.15rem;
    line-height: 1.08;
  }
}

@media (max-width: 420px) {
  .brand-headline {
    font-size: 2.35rem;
  }

  .specimen__title {
    font-size: 1.85rem;
  }
}

@media (max-width: 640px) {
  .laser-background {
    opacity: 0.34;
  }

  .laser-background.is-scrolling {
    opacity: 0.58;
  }

  .laser-background__beam {
    width: 150vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .laser-background,
  .fade-in,
  .brand-button,
  .jedi-social-icon {
    transition: none !important;
  }
}
