@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-300-500-latin.woff2") format("woff2");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-300-600-latin.woff2") format("woff2");
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000000;
  --gold: #c8a84b;
  --gold-dim: rgba(200, 168, 75, 0.15);
  --gold-glow: rgba(200, 168, 75, 0.3);
  --white: #ffffff;
  --gray: #7a7672;
  --border: rgba(200, 168, 75, 0.18);
  --text-muted: rgba(255, 255, 255, 0.78);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(64px + var(--safe-top));
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body > nav,
body > section,
body > div:not(.contact-modal),
body > footer {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--safe-top) 3.5rem 0;
  height: calc(64px + var(--safe-top));
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  max-width: 1250px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
  min-height: 42px;
}

.logo-ring {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.logo-label .top {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
}

.logo-label .btm {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  margin-top: 0.18rem;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.98rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 237, 232, 0.45);
  padding: 0.45rem 1.2rem;
  min-height: 42px;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  background-clip: padding-box;
}

.btn-outline.is-pressed {
  color: var(--bg);
  background: var(--white);
  border-color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  min-height: 42px;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding-top: calc(64px + var(--safe-top));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #000;
}

.hero-stars {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-content {
  padding: 2rem 2.25rem;
  position: relative;
  z-index: 3;
  max-width: 660px;
  margin-left: 0;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 4.25rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.hero h1 .gold {
  color: var(--gold);
  font-style: normal;
}

.hero-desc {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 2.75rem;
  font-weight: 300;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(240, 237, 232, 0.35);
  padding: 0.8rem 2rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition:
    border-color 0.25s,
    color 0.25s;
  cursor: pointer;
  background: transparent;
  font-family: "Inter", sans-serif;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-cta svg {
  transition: transform 0.25s;
}

.hero-visual {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: min(730px, 51.84vw);
  height: auto;
  display: block;
  filter: none;
  opacity: 0.92;
  mask-image: radial-gradient(
    circle at center,
    black 48%,
    rgba(0, 0, 0, 0.86) 64%,
    rgba(0, 0, 0, 0.48) 79%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 48%,
    rgba(0, 0, 0, 0.86) 64%,
    rgba(0, 0, 0, 0.48) 79%,
    transparent 100%
  );
}

/* Section base */
.section-label {
  font-size: 0.81rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.section-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.36rem, 2.24vw, 2.24rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

.section-body {
  font-size: 0.8rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 460px;
  font-weight: 300;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
}

/* Who We Are */
.who-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  border-top: 1px solid var(--border);
}

.who-text {
  padding: 2.25rem 2.25rem;
  border-right: 1px solid var(--border);
}

.who-text .section-body + .section-body {
  margin-top: 1rem;
}

.who-visual {
  display: flex;
  flex-direction: column;
  background: #000;
  position: relative;
  overflow: hidden;
}

.cityscape-wrap {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: #000;
  z-index: 1;
}

.cityscape-wrap img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
}

.who-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: transparent;
}

.feature-item {
  padding: 1.1rem 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  border-right: none;
  background: transparent;
}

.feature-item svg {
  color: var(--gold);
  width: 74px;
  height: 74px;
}

.feature-item img {
  width: 74px;
  height: 74px;
  display: block;
  object-fit: contain;
  margin-inline: auto;
}

.feature-item .feat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 1;
  line-height: 1.5;
}

/* Factory + What We Do */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.tc-left {
  padding: 2.25rem 2.25rem;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.tc-right {
  padding: 2.25rem 2.25rem;
}

.factory-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.pillar svg {
  color: var(--gold);
  width: 54px;
  height: 54px;
  margin-bottom: 0.8rem;
}

.pillar img {
  width: 54px;
  height: 54px;
  margin-bottom: 0.8rem;
  display: block;
  object-fit: contain;
  margin-inline: auto;
}

.pillar p {
  font-size: 0.89rem;
  line-height: 1.65;
  color: var(--white);
  font-weight: 300;
}

.pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-top: 2.75rem;
  flex-wrap: nowrap;
  width: 100%;
}

.pipe-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex: 1 1 0;
}

.pipe-circle {
  width: 77px;
  height: 77px;
  border: 1px solid rgba(240, 237, 232, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.pipe-circle svg {
  width: 47px;
  height: 47px;
}

.pipe-circle img {
  width: 47px;
  height: 47px;
  display: block;
  object-fit: contain;
}

.pipe-circle:hover {
  border-color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}

.pipe-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.pipe-arrow {
  color: rgba(240, 237, 232, 0.3);
  font-size: 1rem;
  margin: 0 0 1.4rem;
  flex-shrink: 0;
}

/* Hit-Finding + For Creators */
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 0.55rem;
  margin: 1.75rem 0 2.1rem;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 300;
}

.check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 9px;
}

.orbit-scene {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: min(340px, 46%);
  z-index: 1;
}

.orbit-scene img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.82;
  filter: blur(1.3px);
}

.hit-finding-copy {
  position: relative;
  z-index: 2;
  max-width: none;
  padding-right: 0;
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: center;
  gap: 1.25rem 0.9rem;
  margin: 1.75rem 0;
}

.creator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
}

.creator-item svg {
  color: var(--gold);
  width: 26px;
  height: 26px;
}

.creator-item .c-label {
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.75rem 0 1rem;
}

.tag {
  border: 1px solid rgba(240, 237, 232, 0.2);
  padding: 0.28rem 0.7rem;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Contact + Footer */
.contact-section {
  border-top: 1px solid var(--border);
  padding: 2.2rem 3.5rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  overflow: hidden;
}

.contact-copy {
  max-width: 520px;
}

.contact-copy .section-body {
  max-width: 500px;
}

.contact-email {
  display: inline-block;
  margin-top: 1.6rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.18rem;
}

.btn-outline:focus,
.btn-outline:visited {
  color: var(--white);
  background: transparent;
}

.btn-outline:active {
  color: var(--white);
  background: transparent;
  border-color: rgba(240, 237, 232, 0.45);
  outline: none;
  box-shadow: none;
}

.btn-cta:focus,
.btn-cta:visited {
  color: var(--white);
  background: transparent;
}

.btn-cta:active {
  color: var(--gold);
  border-color: var(--gold);
  background: transparent;
}

.btn-outline:focus-visible,
.btn-cta:focus-visible {
  outline: 1px solid rgba(200, 168, 75, 0.85);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover {
    opacity: 1;
  }

  .btn-outline:hover {
    background: var(--white);
    color: var(--bg);
    border-color: var(--white);
  }

  .btn-cta:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .btn-cta:hover svg {
    transform: translateX(4px);
  }

  .contact-email:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }
}

.contact-form {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  padding: 0.95rem 1rem;
  font: inherit;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(200, 168, 75, 0.8);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 1px rgba(200, 168, 75, 0.22);
}

.form-textarea {
  min-height: 8.8rem;
  resize: vertical;
}

.form-error {
  font-size: 0.76rem;
  color: #ff6b6b;
  min-height: 1em;
  line-height: 1.35;
}

.field-invalid .form-input,
.field-invalid .form-textarea {
  border-color: rgba(255, 107, 107, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 107, 107, 0.18);
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.contact-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-card {
  max-width: 420px;
  width: 100%;
  background: #090909;
  border: 1px solid rgba(200, 168, 75, 0.25);
  padding: 1.55rem 1.4rem 1.35rem;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.contact-modal-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.contact-modal-card p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

footer {
  border-top: 1px solid var(--border);
  padding: 1.35rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
  max-width: 100%;
}

.footer-logo-ring {
  width: 151px;
  height: 151px;
  border-radius: 50%;
  overflow: hidden;
}

.footer-divider {
  width: 1px;
  height: 77px;
  background: var(--border);
  opacity: 0.9;
}

.footer-logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer-name {
  min-width: 0;
}

.footer-name .big {
  font-size: 2.35rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.footer-name .small {
  font-size: 1.96rem;
  letter-spacing: 0.63em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.35rem;
  text-align: center;
}

.footer-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.35);
  padding-top: 0;
  margin-top: 0.1rem;
  width: 100%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 0.55rem;
}

.footer-tagline-break {
  display: inline;
}

.footer-tagline-unit {
  display: inline;
  white-space: nowrap;
}

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (max-width: 960px) {
  nav {
    padding: 0 1rem;
    min-height: 58px;
    height: auto;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    column-gap: 0.75rem;
    row-gap: 0;
    padding-top: 0.72rem;
    padding-bottom: 0.55rem;
  }

  .nav-logo,
  .nav-actions {
    position: relative;
  }

  .nav-links {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
  }

  .hero,
  .who-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .who-text,
  .tc-left,
  .tc-right {
    padding: 3rem 1rem;
  }

  .tc-left {
    position: relative;
  }

  .hit-finding-copy {
    max-width: none;
    padding-right: 0;
  }

  .hero-content {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    margin-left: 0;
    max-width: none;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    min-height: 0;
    padding: 0 1rem 2.5rem;
    margin-top: -1.25rem;
  }

  .hero-image {
    width: min(88vw, 420px);
    opacity: 1;
    filter: drop-shadow(0 0 12px #000) drop-shadow(0 0 28px #000);
    mask-image: radial-gradient(
      circle at center,
      black 44%,
      rgba(0, 0, 0, 0.88) 62%,
      rgba(0, 0, 0, 0.52) 78%,
      transparent 100%
    );
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 44%,
      rgba(0, 0, 0, 0.88) 62%,
      rgba(0, 0, 0, 0.52) 78%,
      transparent 100%
    );
  }

  .who-text,
  .tc-left {
    border-right: none;
  }

  .tc-right {
    border-top: 1px solid var(--border);
  }

  .who-features {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    background: transparent;
    margin-top: 0;
  }

  .feature-item {
    width: 100%;
  }

  .creators-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .feature-item:nth-child(2n) {
    border-right: none;
  }

  .feature-item:nth-child(-n + 2) {
    border-bottom: none;
  }

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

  .factory-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }

  .pillar {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }

  .pillar:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .pipeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 1.1rem 0.8rem;
    flex-wrap: nowrap;
  }

  .orbit-scene {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: min(260px, 100%);
    z-index: 1;
    margin-right: auto;
    margin-left: auto;
    margin-top: -1rem;
  }

  .pipe-arrow {
    display: none;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem 1.35rem;
  }

  .contact-copy .section-body,
  .contact-copy .section-h2 {
    margin-bottom: 0;
  }

  .contact-email {
    margin-top: 0.8rem;
    font-size: 1.14rem;
  }

  .contact-form {
    width: 80%;
    max-width: 440px;
    margin: 0 auto;
    gap: 0.78rem;
  }

  .contact-form .btn-cta {
    width: 100%;
    justify-content: center;
    margin-top: -0.2rem;
  }

  .btn-outline,
  .contact-form .btn-cta {
    min-height: 38px;
  }

  footer {
    padding: 1rem;
  }
}

@media (max-width: 960px) {
  html.is-ios-safari {
    scroll-padding-top: 0;
  }

  html.is-ios-safari nav {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    min-height: 58px;
    padding-top: calc(var(--safe-top) + 0.42rem);
    padding-bottom: 0.45rem;
    z-index: auto;
  }

  html.is-ios-safari .hero {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: calc(43px + var(--safe-top));
  }

  .logo-label .top {
    font-size: 0.64rem;
  }

  .logo-label .btm,
  .btn-outline {
    font-size: 0.52rem;
  }

  .btn-outline {
    padding: 0.42rem 0.8rem;
  }

  .btn-cta {
    padding: 0.72rem 1.55rem;
  }

  .contact-form {
    width: min(80%, 360px);
  }

  .form-input,
  .form-textarea {
    padding: 0.76rem 0.9rem;
  }

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

  .hero-desc,
  .section-body,
  .pillar p,
  .check-row {
    font-size: 0.78rem;
  }

  .who-features {
    padding-bottom: 0;
  }

  .feature-item {
    padding: 0.85rem 0.55rem 0.45rem;
    gap: 0.4rem;
  }

  .feature-item .feat-label {
    font-size: 0.7rem;
  }

  .pillar img,
  .pillar svg {
    margin-inline: auto;
  }

  .who-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }

  .pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 0.7rem;
  }

  .pipe-step {
    width: 100%;
  }

  .factory-pillars {
    gap: 1.5rem;
  }

  .creators-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.75rem;
  }

  .form-textarea {
    min-height: 3.9rem;
    height: 3.9rem;
    resize: none;
  }

  .footer-brand {
    gap: 0.9rem;
  }

  .footer-logo-ring {
    width: min(31vw, 124px);
    height: min(31vw, 124px);
  }

  .footer-name .big {
    font-size: 1.35rem;
    letter-spacing: 0.22em;
  }

  .footer-name .small {
    font-size: 1rem;
    letter-spacing: 0.38em;
  }

  .footer-divider {
    height: 53px;
  }

  .footer-tagline {
    line-height: 1.45;
    margin-top: 0;
    justify-content: center;
  }

  .footer-tagline-break {
    display: block;
    width: 100%;
    text-align: center;
  }

  .footer-tagline-unit {
    display: inline-block;
  }
}

@supports (padding: max(0px)) {
  @media (max-width: 960px) {
    nav {
      padding-top: calc(max(env(safe-area-inset-top, 0px), 0px) + 0.72rem);
      height: auto;
    }

    .hero {
      padding-top: calc(64px + max(env(safe-area-inset-top, 0px), 0px));
    }

    html.is-ios-safari .hero {
      padding-top: 0;
    }
  }
}
