:root {
  --bg: #212121;
  --card: rgba(43, 43, 43, 0.68);
  --card-solid: #2b2b2b;
  --text: #fafafa;
  --muted: #a6a6a6;
  --border: rgba(255, 255, 255, 0.12);
  --orange: #f97316;
  --orange-dark: #ea580c;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(249, 115, 22, 0.06), transparent 640px),
    var(--bg);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(100% - 48px, 1304px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.hero {
  min-height: 760px;
  padding: 36px 0 0;
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(circle at 76% 68%, rgba(249, 115, 22, 0.38), transparent 24%),
    linear-gradient(135deg, #222 0%, #202020 54%, #3a241a 100%);
}

.orb {
  position: absolute;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.14);
  filter: blur(120px);
  pointer-events: none;
}

.orb-1 {
  width: 680px;
  height: 680px;
  right: -120px;
  top: -70px;
}

.orb-2 {
  width: 560px;
  height: 560px;
  left: -170px;
  bottom: -120px;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: clamp(72px, 8vw, 116px);
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
}

.brand-logo {
  width: clamp(176px, 16vw, 232px);
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.32));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(520px, 1.14fr);
  align-items: end;
  gap: clamp(28px, 5vw, 78px);
  min-height: 570px;
  min-width: 0;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  padding-bottom: 118px;
}

h1,
h2,
h3 {
  margin: 0;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 32px;
  font-size: clamp(50px, 4.65vw, 74px);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero h1 em,
h2 span,
h3 span,
.accent {
  color: var(--orange);
}

.desktop-title {
  display: block;
}

.mobile-title {
  display: none;
}

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

.hero p {
  max-width: 450px;
  margin: 0 0 36px;
  color: #e5e5e5;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.45;
}

.hero-media {
  justify-self: end;
  align-self: end;
  width: 100%;
  min-width: 0;
}

.hero-media img {
  width: min(100%, 650px);
  margin-left: auto;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.42));
  transform-origin: bottom center;
  animation: heroFloat 7s ease-in-out infinite;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 256px;
  min-height: 64px;
  padding: 18px 36px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ff7a1a 0%, var(--orange-dark) 100%);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.28);
  transition: transform 0.24s var(--ease), filter 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 20px 42px rgba(249, 115, 22, 0.36);
}

.button:active {
  transform: translateY(0);
}

.button.centered {
  margin: 48px auto 0;
}

.intro {
  padding-top: 104px;
}

.intro h2,
.section-head h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lead,
.section-head > p:not(.eyebrow),
.section-head.compact p {
  max-width: 760px;
  margin: 0 auto 56px;
  color: var(--muted);
  text-align: center;
  font-size: 20px;
  line-height: 1.55;
}

.cards,
.case-grid,
.marketing-grid,
.social-grid,
.material-grid {
  display: grid;
  gap: 20px;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.panel,
.person-card,
.case-card,
.mini-card,
.certificate-card,
.press-card,
.social-grid a,
.material-grid a {
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.card:hover,
.panel:hover,
.person-card:hover,
.case-card:hover,
.mini-card:hover,
.certificate-card:hover,
.press-card:hover,
.social-grid a:hover,
.material-grid a:hover {
  border-color: rgba(249, 115, 22, 0.5);
  background: var(--card-solid);
  transform: translateY(-4px);
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.34);
}

.card {
  min-height: 232px;
  padding: 32px;
  border-radius: var(--radius);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 13px;
  background: rgba(249, 115, 22, 0.16);
  color: var(--orange);
  font-weight: 900;
  font-size: 22px;
}

.card h3,
.panel h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.22;
}

.card p,
.panel p,
.tick-list,
.case-card p,
.mini-card strong,
.material-grid span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.section-glow::before,
.section-glow::after {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.08);
  filter: blur(130px);
  pointer-events: none;
}

.section-glow::before {
  left: -170px;
  top: 28%;
}

.section-glow::after {
  right: -140px;
  bottom: 0;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head.compact {
  max-width: 920px;
}

.section-head.compact h2 {
  font-size: clamp(28px, 3vw, 43px);
}

.company-awards {
  margin-top: 88px;
}

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

.certificate-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.certificate-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  background: #f4f4f4;
}

.certificate-card div {
  padding: 28px;
}

.certificate-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.2;
}

.certificate-card p:not(.publisher) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.eyebrow,
.role,
.publisher,
.label {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.two-grid,
.founder-grid,
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.panel {
  padding: 40px;
  border-radius: var(--radius-lg);
}

.tick-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 20px;
}

.tick-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.person-card,
.case-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.person-card img,
.case-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
}

.person-body {
  padding: 34px;
}

.person-body h3 {
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 1.12;
}

.awards-grid {
  grid-template-columns: 360px 1fr;
  align-items: end;
  max-width: 1120px;
  margin-inline: auto;
}

.alex-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.alex-wrap::after {
  content: "";
  position: absolute;
  inset: auto 12% 0;
  height: 65%;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.25);
  filter: blur(70px);
}

.alex-wrap img {
  position: relative;
  z-index: 1;
  width: 360px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mini-card {
  min-height: 145px;
  padding: 22px;
  border-radius: var(--radius);
}

.press-card {
  grid-column: 1 / -1;
  display: block;
  overflow: hidden;
  min-height: 145px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.press-card img {
  width: 100%;
  max-height: 310px;
  object-fit: cover;
  object-position: top;
  background: #f4f4f4;
}

.press-card div {
  padding: 22px;
}

.press-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.press-card strong {
  display: block;
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.press-card small {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.case-card div {
  padding: 28px;
}

.case-card h3 {
  margin-bottom: 22px;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.case-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.label {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
}

.divider {
  display: block;
  height: 1px;
  margin: 20px 0;
  background: var(--border);
}

.marketing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.note {
  max-width: 790px;
  margin: 36px auto 0;
  color: rgba(166, 166, 166, 0.82);
  text-align: center;
  font-style: italic;
  line-height: 1.6;
}

.social-grid {
  max-width: 960px;
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
}

.social-grid a {
  display: grid;
  place-items: center;
  min-height: 158px;
  padding: 26px;
  border-radius: var(--radius);
  text-align: center;
}

.social-grid span {
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-grid small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.material-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 680px;
  margin-inline: auto;
}

.material-grid a {
  display: flex;
  flex-direction: column;
  min-height: 182px;
  padding: 28px;
  border-radius: var(--radius);
}

.material-grid b {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.material-grid strong {
  margin-bottom: 8px;
  font-size: 21px;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 10;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #151515;
  color: #fff;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, 120px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.01);
  }
}

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

  .brand {
    margin-bottom: 48px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-copy {
    display: contents;
    justify-self: center;
    padding-bottom: 0;
  }

  .hero h1 {
    order: 1;
    margin-inline: auto;
    font-size: clamp(36px, 7vw, 54px);
  }

  .hero p {
    order: 3;
    margin-inline: auto;
    font-size: 19px;
  }

  .hero-media {
    order: 2;
    justify-self: center;
  }

  .hero-media img {
    width: min(88vw, 500px);
    margin-inline: auto;
  }

  .stats-grid,
  .case-grid,
  .marketing-grid,
  .material-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1304px);
  }

  section {
    padding: 72px 0;
  }

  .hero {
    min-height: 100svh;
    padding-top: 26px;
    padding-bottom: 86px;
    background:
      radial-gradient(circle at 50% 74%, rgba(249, 115, 22, 0.34), transparent 34%),
      linear-gradient(180deg, #232323 0%, #352218 100%);
  }

  .brand {
    margin-bottom: 42px;
  }

  .hero-grid {
    max-width: calc(100vw - 32px);
  }

  .hero h1 {
    width: min(100%, 352px);
    max-width: calc(100vw - 24px);
    margin-bottom: 42px;
    font-size: clamp(28px, 7.8vw, 34px);
    line-height: 1.12;
    letter-spacing: 0.01em;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: block;
  }

  .hero p {
    width: 100%;
    max-width: 340px;
    margin: 34px auto 26px;
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 22px;
    line-height: 1.55;
  }

  .brand-logo {
    width: 192px;
  }

  .button {
    order: 4;
    width: min(calc(100vw - 64px), 252px);
    min-width: 0;
    min-height: 56px;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 14px;
    letter-spacing: 0.1em;
  }

  .button.centered {
    margin-top: 36px;
  }

  .intro h2,
  .section-head h2 {
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.1;
    letter-spacing: 0.01em;
  }

  .lead,
  .section-head > p:not(.eyebrow),
  .section-head.compact p {
    margin-bottom: 36px;
    font-size: 16px;
  }

  .stats-grid,
  .certificate-grid,
  .two-grid,
  .founder-grid,
  .case-grid,
  .marketing-grid,
  .social-grid,
  .material-grid,
  .mini-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card,
  .panel,
  .person-body,
  .case-card div,
  .mini-card,
  .certificate-card div,
  .press-card div,
  .social-grid a,
  .material-grid a {
    padding: 24px;
  }

  .card {
    min-height: auto;
  }

  .person-body h3 {
    font-size: 28px;
  }

  .awards-grid {
    gap: 30px;
  }

  .alex-wrap img {
    width: 260px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    width: min(100%, 382px);
    max-width: calc(100vw - 8px);
    font-size: clamp(25px, 6.7vw, 27px);
  }

  .button {
    width: min(calc(100vw - 64px), 232px);
  }

  .hero-media img {
    width: min(92vw, 420px);
  }

  .social-grid span,
  .material-grid strong {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
