:root {
  --black: #121212;
  --concrete: #2a2a2a;
  --purple: #7a3eff;
  --white: #ffffff;
  --off-white: #f4f2f7;
  --muted: #a8a5ae;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(18, 18, 18, 0.12);
  --container: 1180px;
  --radius: 2px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  background: var(--purple);
  color: var(--white);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 132px 0;
}

.kicker,
.eyebrow {
  margin: 0 0 22px;
  color: var(--purple);
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 7.2vw, 6.8rem);
  font-weight: 600;
}

h1 strong {
  color: var(--purple);
  font-weight: 600;
}

h2 {
  font-size: clamp(2.4rem, 4.7vw, 4.8rem);
  font-weight: 600;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

p {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "Sora", sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.social-link:focus-visible,
.brand:focus-visible,
.scroll-cue:focus-visible,
.footer-inner a:focus-visible {
  outline: 3px solid rgba(122, 62, 255, 0.6);
  outline-offset: 4px;
}

.button-primary {
  background: var(--purple);
  color: var(--white);
}

.button-primary:hover {
  background: #6c31ef;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-light:hover {
  background: var(--off-white);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(18, 18, 18, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(18, 18, 18, 0.93);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  width: 178px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Sora", sans-serif;
  font-size: 0.77rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--purple);
  transition: right 0.25s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white) !important;
}

.nav-cta:hover {
  border-color: var(--purple);
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 56px) 0 72px;
  background: var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  top: 18%;
  right: -14%;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(122, 62, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 27%;
  right: -4%;
  width: 32vw;
  height: 32vw;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transform: rotate(45deg);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black 0, transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, black 0, transparent 82%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100svh - var(--header-height) - 128px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.63);
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--purple);
}

.hero-text {
  max-width: 680px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.creative-frame {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1 / 1.16;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(42, 42, 42, 0.34);
}

.creative-frame::before,
.creative-frame::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-color: var(--purple);
}

.creative-frame::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--purple);
  border-left: 2px solid var(--purple);
}

.creative-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
}

.frame-label,
.frame-caption {
  position: absolute;
  z-index: 3;
  font-family: "Sora", sans-serif;
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.frame-label {
  top: 21px;
  left: 24px;
  color: var(--purple);
}

.frame-caption {
  right: 24px;
  bottom: 21px;
  color: rgba(255, 255, 255, 0.45);
}

.layer {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(122, 62, 255, 0.5);
  transform-origin: center;
}

.layer-one {
  transform: translate(-50%, -50%) rotate(45deg);
}

.layer-two {
  transform: translate(-50%, -50%) rotate(45deg) scale(0.78);
  border-color: rgba(255, 255, 255, 0.22);
}

.layer-three {
  transform: translate(-50%, -50%) rotate(45deg) scale(0.53);
  border-color: var(--purple);
}

.layer-core {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 38%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--black);
  transform: translate(-50%, -50%);
}

.layer-core img {
  width: 67%;
  height: 67%;
  object-fit: contain;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Sora", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 26px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 4px;
  background: var(--purple);
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite ease-in-out;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* Intro */
.intro {
  background: var(--off-white);
  color: var(--black);
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10vw;
}

.section-heading h2 {
  max-width: 540px;
}

.intro-copy {
  padding-top: 48px;
}

.intro-copy .lead {
  margin-bottom: 24px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
}

.intro-copy > p:not(.lead) {
  color: #5b5860;
  font-size: 1.03rem;
  line-height: 1.85;
}

.signature-line {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.signature-line > span {
  height: 2px;
  margin-top: 12px;
  background: var(--purple);
}

.signature-line p {
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
  line-height: 1.6;
}

.signature-line strong {
  color: var(--purple);
}

/* Purpose */
.purpose {
  background: var(--black);
}

.purpose-card {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 80px;
  gap: 36px;
  overflow: hidden;
  padding: 68px 74px;
  border: 1px solid var(--line);
  background: var(--concrete);
}

.purpose-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 210px;
  height: 210px;
  border-top: 1px solid rgba(122, 62, 255, 0.38);
  border-left: 1px solid rgba(122, 62, 255, 0.38);
  transform: translate(45%, 45%) rotate(45deg);
}

.purpose-index {
  color: rgba(255, 255, 255, 0.28);
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.purpose-content h2 {
  max-width: 850px;
  margin-bottom: 34px;
}

.purpose-content > p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.08rem;
  line-height: 1.85;
}

.purpose-mark {
  color: var(--purple);
  font-family: "Sora", sans-serif;
  font-size: 4.4rem;
  font-weight: 300;
  line-height: 0.7;
  text-align: right;
}

.social-icon .whatsapp-fill {
  fill: currentColor;
  stroke: none;
}

/* Values */
.values {
  background: var(--off-white);
  color: var(--black);
}

.values-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 72px;
}

.values-header > p {
  padding-bottom: 8px;
  color: #646168;
  line-height: 1.8;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.value-card {
  position: relative;
  min-height: 430px;
  padding: 42px 36px 46px;
  border-right: 1px solid var(--line-dark);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.value-card:first-child {
  border-left: 1px solid var(--line-dark);
}

.value-card:hover {
  z-index: 2;
  background: var(--black);
  color: var(--white);
  transform: translateY(-10px);
}

.value-card:hover p,
.value-card:hover .value-number {
  color: rgba(255, 255, 255, 0.62);
}

.value-number {
  color: #8b878f;
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  transition: color 0.3s ease;
}

.value-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 74px 0 36px;
  border: 1px solid rgba(122, 62, 255, 0.46);
}

.value-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--purple);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin-bottom: 20px;
}

.value-card p {
  color: #68656d;
  line-height: 1.8;
  transition: color 0.3s ease;
}

/* Manifesto */
.manifesto {
  position: relative;
  overflow: hidden;
  padding: 156px 0;
  background: var(--purple);
  color: var(--white);
}

.manifesto-lines {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(90deg, transparent 0 49.8%, rgba(255,255,255,.22) 50%, transparent 50.2%),
    linear-gradient(transparent 0 49.8%, rgba(255,255,255,.18) 50%, transparent 50.2%);
  background-size: 170px 170px;
  transform: rotate(12deg) scale(1.35);
}

.manifesto-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.manifesto .kicker {
  color: rgba(255, 255, 255, 0.68);
}

.manifesto h2 {
  max-width: 900px;
  margin-bottom: 42px;
}

.manifesto p {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.85;
}

.manifesto blockquote {
  margin: 70px 0 0;
  padding: 36px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

/* Direction */
.direction {
  background: var(--black);
}

.direction-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 9vw;
}

.direction-visual {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line);
  background: var(--concrete);
}

.direction-visual::before,
.direction-visual::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
}

.direction-visual::after {
  inset: 26%;
  border-color: rgba(122, 62, 255, 0.65);
}

.word-stack {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.word-stack span {
  padding: 3px 9px;
  background: var(--concrete);
  color: rgba(255, 255, 255, 0.33);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.word-stack span:nth-child(2) {
  color: rgba(255, 255, 255, 0.72);
}

.word-stack span:nth-child(3) {
  color: var(--purple);
}

.direction-copy h2 {
  margin-bottom: 35px;
}

.direction-copy > p:not(.kicker):not(.direction-note) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.04rem;
  line-height: 1.86;
}

.direction-note {
  margin-top: 38px;
  padding: 22px 0 22px 24px;
  border-left: 2px solid var(--purple);
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

/* Contact */
.contact {
  padding: 132px 0;
  background: var(--purple);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: 10vw;
}

.contact .kicker {
  color: rgba(255, 255, 255, 0.65);
}

.contact-copy h2 {
  margin-bottom: 30px;
}

.contact-copy p:not(.kicker) {
  max-width: 580px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.85;
}

.social-list {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.social-link {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: padding-left 0.25s ease, background-color 0.25s ease;
}

.social-link:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.social-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.social-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon .fill {
  fill: var(--white);
  stroke: none;
}

.social-link span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.social-link small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.social-link strong {
  font-family: "Sora", sans-serif;
  font-size: 1.16rem;
  font-weight: 500;
}

.social-link > i {
  color: rgba(255, 255, 255, 0.65);
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-style: normal;
}

/* Footer */
.site-footer {
  padding: 34px 0;
  background: var(--black);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-inner img {
  width: 150px;
}

.footer-inner p,
.footer-inner a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
}

.footer-inner p {
  text-align: center;
}

.footer-inner a {
  transition: color 0.2s ease;
}

.footer-inner a:hover {
  color: var(--white);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.value-card:nth-child(2).reveal {
  transition-delay: 0.08s;
}

.value-card:nth-child(3).reveal {
  transition-delay: 0.16s;
}

/* Responsive */
@media (max-width: 1024px) {
  .section {
    padding: 108px 0;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  }

  .creative-frame {
    max-width: 350px;
  }

  .two-columns,
  .direction-layout {
    gap: 7vw;
  }

  .purpose-card {
    padding: 60px 48px;
  }

  .value-card {
    padding-inline: 27px;
  }

  .contact-layout {
    gap: 6vw;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  /*
   * Navegação mobile de tela inteira.
   * O backdrop-filter é removido no celular porque ele pode transformar
   * o cabeçalho em referência para elementos position: fixed, fazendo o
   * fundo do menu ficar limitado à altura do header.
   */
  .site-header,
  .site-header.scrolled,
  body.menu-open .site-header {
    height: var(--header-height);
    border-bottom-color: var(--line);
    background: var(--black);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header-inner {
    position: relative;
    z-index: 1003;
  }

  .brand {
    position: relative;
    z-index: 1004;
  }

  .menu-toggle {
    position: relative;
    z-index: 1004;
    display: block;
    flex: 0 0 45px;
    border-color: rgba(255, 255, 255, 0.20);
    background: #1b1b1b;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible,
  .menu-toggle[aria-expanded="true"] {
    border-color: rgba(122, 62, 255, 0.75);
    background: var(--concrete);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1002;
    display: flex;
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    padding:
      calc(var(--header-height) + 28px)
      max(20px, env(safe-area-inset-right))
      max(34px, env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
    border: 0;
    background: #121212;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease;
  }

  .main-nav::before {
    content: "Navegação";
    display: block;
    margin: 0 0 14px;
    color: var(--purple);
    font-family: "Sora", sans-serif;
    font-size: 0.70rem;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    position: relative;
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    padding: 15px 16px;
    border: 1px solid transparent;
    border-bottom-color: var(--line);
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 5vw, 1.25rem);
    line-height: 1.3;
  }

  .main-nav a::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    margin-right: 13px;
    border-radius: 50%;
    background: var(--purple);
    opacity: 0.65;
  }

  .main-nav a:not(.nav-cta)::after {
    content: "→";
    position: static;
    width: auto;
    height: auto;
    margin-left: auto;
    background: transparent;
    color: rgba(255, 255, 255, 0.35);
    font-size: 1rem;
    transform: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    border-color: rgba(122, 62, 255, 0.45);
    background: rgba(122, 62, 255, 0.09);
    color: var(--white);
  }

  .main-nav .nav-cta {
    min-height: 58px;
    justify-content: center;
    margin-top: 16px;
    padding: 15px 20px;
    border: 1px solid var(--purple);
    background: var(--purple);
    color: var(--white) !important;
    text-align: center;
  }

  .main-nav .nav-cta::before {
    display: none;
  }

  .main-nav .nav-cta:hover,
  .main-nav .nav-cta:focus-visible {
    border-color: #8d5cff;
    background: #6c31ef;
  }

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 110px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 70px;
    min-height: auto;
  }

  .hero-art {
    justify-content: center;
  }

  .creative-frame {
    width: min(100%, 440px);
  }

  .scroll-cue {
    display: none;
  }

  .two-columns,
  .values-header,
  .direction-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 0;
  }

  .purpose-card {
    grid-template-columns: 55px 1fr;
  }

  .purpose-mark {
    display: none;
  }

  .values-header {
    align-items: start;
    gap: 30px;
  }

  .values-header > p {
    max-width: 580px;
  }

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

  .value-card,
  .value-card:first-child {
    min-height: auto;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
  }

  .value-card:last-child {
    border-bottom: 0;
  }

  .value-card:hover {
    transform: none;
  }

  .value-icon {
    margin-top: 45px;
  }

  .direction-visual {
    min-height: 430px;
  }

  .contact-layout {
    gap: 64px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .footer-inner p {
    order: 3;
  }
}

@media (max-width: 560px) {
  .main-nav {
    gap: 5px;
    padding-top: calc(var(--header-height) + 20px);
  }

  .main-nav a {
    min-height: 56px;
    padding: 13px 14px;
    font-size: 1.05rem;
  }

  .section,
  .contact {
    padding: 88px 0;
  }

  .brand {
    width: 145px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .hero-text {
    margin-top: 28px;
    font-size: 1rem;
  }

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

  .button {
    width: 100%;
  }

  .creative-frame {
    aspect-ratio: 1 / 1.12;
  }

  .frame-caption {
    right: 16px;
    bottom: 15px;
    max-width: 150px;
    text-align: right;
    line-height: 1.6;
  }

  .purpose-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 42px 27px;
  }

  .purpose-content h2 {
    margin-bottom: 26px;
  }

  .manifesto {
    padding: 100px 0;
  }

  .manifesto blockquote {
    margin-top: 50px;
    padding-top: 28px;
    font-size: 2rem;
  }

  .direction-visual {
    min-height: 350px;
  }

  .social-link {
    grid-template-columns: 46px 1fr auto;
    gap: 14px;
    min-height: 90px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }

  .social-link strong {
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
