/* ============================================================
   PADASH™ V1
   Premium launch site
   The ORYX Collective
============================================================ */


/* ============================================================
   ROOT / RESET
============================================================ */

:root {
  --gunmetal: #1F262A;
  --gunmetal-soft: #2A3237;
  --light-gunmetal: #5B676D;
  --ivory: #FFFFF0;
  --ivory-soft: #F7F4E8;
  --champagne: #C89A65;
  --champagne-soft: #D9B68C;
  --white: #FFFFFF;

  --text-dark: #1F262A;
  --text-light: #FFFFF0;
  --text-muted: #9BA3A7;

  --border-dark: rgba(255, 255, 240, 0.12);
  --border-light: rgba(31, 38, 42, 0.12);

  --max-width: 1180px;
  --narrow-width: 760px;

  --radius-card: 18px;
  --radius-button: 12px;

  --shadow-soft:
    0 18px 50px rgba(0, 0, 0, 0.12);
}


*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  min-height: 100vh;

  font-family:
    "Montserrat",
    "Avenir Next",
    Avenir,
    Arial,
    sans-serif;

  background: var(--gunmetal);
  color: var(--text-dark);

  font-size: 16px;
  line-height: 1.7;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


body,
button,
a,
input,
textarea,
select {
  font-family:
    "Montserrat",
    "Avenir Next",
    Avenir,
    Arial,
    sans-serif;
}


img {
  display: block;
  max-width: 100%;
}


a {
  color: inherit;
  text-decoration: none;
}


button,
a {
  -webkit-tap-highlight-color: transparent;
}


::selection {
  background: var(--champagne);
  color: var(--gunmetal);
}


/* ============================================================
   GLOBAL TYPOGRAPHY
============================================================ */

h1,
h2,
h3,
p {
  margin-top: 0;
}


h1,
h2,
h3 {
  color: inherit;
  letter-spacing: -0.035em;
}


h1 {
  margin-bottom: 28px;

  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.98;

  font-weight: 700;
}


h2 {
  margin-bottom: 24px;

  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.02;

  font-weight: 700;
}


h3 {
  margin-bottom: 12px;

  font-size: 1.45rem;
  line-height: 1.15;

  font-weight: 700;
}


p {
  margin-bottom: 18px;
}


.lead {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.6;

  color: inherit;
}


.large-copy {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.45;

  font-weight: 600;
}


.eyebrow,
.section-kicker,
.section-number {
  font-size: 0.78rem;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  font-weight: 700;
}


.section-number {
  color: var(--champagne);

  margin-bottom: 8px;
}


.padash-foundation {
  color: var(--light-gunmetal);
}

.padash-foundation .padash-x {
  color: var(--champagne);
}


/* ============================================================
   LAYOUT
============================================================ */

.content-wrap {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}


.content-wrap.narrow {
  max-width: var(--narrow-width);
}


.center {
  text-align: center;
}


.section {
  position: relative;

  padding: 120px 0;

  overflow: hidden;
}


.section-light,
.section-ivory {
  background: var(--ivory);
  color: var(--gunmetal);
}


.section-dark {
  background: var(--gunmetal);
  color: var(--ivory);
}


.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;

  align-items: start;
}


.split-heading {
  position: sticky;
  top: 120px;
}


.split-content {
  max-width: 620px;
}


/* ============================================================
   HEADER
============================================================ */

.site-header {
  position: fixed;
  z-index: 100;

  top: 0;
  left: 0;
  width: 100%;

  background: rgba(31, 38, 42, 0.78);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255, 255, 240, 0.08);
}


.header-inner {
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 78px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: auto 1fr auto;

  align-items: center;
  gap: 34px;
}


.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: var(--ivory);

  font-size: 0.88rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


.header-icon {
  width: 34px;
  height: 34px;

  object-fit: contain;
}


.desktop-nav {
  justify-self: center;

  display: flex;
  align-items: center;
  gap: 30px;
}


.desktop-nav a {
  position: relative;

  color: rgba(255, 255, 240, 0.72);

  font-size: 0.82rem;
  font-weight: 500;

  transition:
    color 0.25s ease;
}


.desktop-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 100%;
  height: 1px;

  background: var(--champagne);

  transform: scaleX(0);
  transform-origin: left center;

  transition:
    transform 0.25s ease;
}


.desktop-nav a:hover {
  color: var(--ivory);
}


.desktop-nav a:hover::after {
  transform: scaleX(1);
}


.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;

  padding: 0 18px;

  border: 1px solid rgba(200, 154, 101, 0.75);
  border-radius: 10px;

  color: var(--ivory);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.05em;
  text-transform: uppercase;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}


.header-cta:hover {
  background: var(--champagne);
  color: var(--gunmetal);

  border-color: var(--champagne);
}


/* ============================================================
   BUTTONS
============================================================ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 24px;

  border-radius: var(--radius-button);

  font-size: 0.84rem;
  font-weight: 700;

  letter-spacing: 0.04em;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}


.button:hover {
  transform: translateY(-2px);
}


.button-primary {
  background: var(--champagne);
  color: var(--gunmetal);

  border: 1px solid var(--champagne);
}


.button-primary:hover {
  background: var(--champagne-soft);
  border-color: var(--champagne-soft);
}


.button-secondary {
  background: transparent;
  color: var(--ivory);

  border: 1px solid rgba(255, 255, 240, 0.28);
}


.button-secondary:hover {
  border-color: var(--ivory);
}


.large-button {
  min-height: 58px;

  padding-inline: 30px;
}


/* ============================================================
   HERO
============================================================ */

.hero {
  position: relative;

  min-height: 100svh;

  display: grid;
  place-items: center;

  padding: 150px 20px 90px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 25%,
      rgba(200, 154, 101, 0.09),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #1F262A 0%,
      #1C2226 100%
    );

  color: var(--ivory);
}


.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 47%,
      rgba(255, 255, 240, 0.018) 48%,
      rgba(255, 255, 240, 0.018) 49%,
      transparent 50%,
      transparent 100%
    );

  pointer-events: none;
}


.hero-bg-mark {
  position: absolute;

  width: 620px;
  height: 620px;

  right: -170px;
  top: 90px;

  border:
    1px solid rgba(200, 154, 101, 0.13);

  transform:
    rotate(45deg);

  opacity: 0.6;
}


.hero-bg-mark::before,
.hero-bg-mark::after {
  content: "";

  position: absolute;

  border:
    1px solid rgba(200, 154, 101, 0.08);
}


.hero-bg-mark::before {
  inset: 95px;
}


.hero-bg-mark::after {
  inset: 190px;
}


.hero-inner {
  position: relative;
  z-index: 2;

  width: min(100%, 900px);

  text-align: center;
}


.hero-logo {
  width: min(100%, 610px);

  margin: 0 auto 36px;

  filter:
    drop-shadow(
      0 15px 35px rgba(0, 0, 0, 0.18)
    );
}


.hero .eyebrow {
  margin-bottom: 26px;

  color: var(--champagne);
}


.hero-copy {
  max-width: 700px;

  margin: 0 auto 36px;

  color: rgba(255, 255, 240, 0.74);

  font-size: clamp(1rem, 1.7vw, 1.22rem);
}


.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 14px;

  flex-wrap: wrap;
}


.hero-scroll {
  position: absolute;

  left: 50%;
  bottom: 28px;

  width: 28px;
  height: 44px;

  border:
    1px solid rgba(255, 255, 240, 0.28);

  border-radius: 999px;

  transform: translateX(-50%);
}


.hero-scroll span {
  position: absolute;

  left: 50%;
  top: 9px;

  width: 3px;
  height: 7px;

  border-radius: 999px;

  background: var(--champagne);

  transform: translateX(-50%);
}


/* ============================================================
   ABOUT
============================================================ */

.section-light .lead {
  color: var(--gunmetal);

  font-weight: 600;
}


.section-light p:not(.section-number):not(.section-kicker):not(.lead) {
  color: var(--light-gunmetal);
}


/* ============================================================
   STORY
============================================================ */

.section-dark .split-content p {
  color: rgba(255, 255, 240, 0.72);
}


.section-dark .split-content .large-copy {
  color: var(--ivory);
}


.accent-line {
  position: relative;

  margin-top: 34px;
  padding-left: 22px;

  color: var(--champagne) !important;

  font-size: 1.12rem;
  font-weight: 700;
}


.accent-line::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0.18em;

  width: 2px;
  height: 1.4em;

  background: var(--champagne);
}


/* ============================================================
   HOW IT PLAYS
============================================================ */

.section-heading-center {
  max-width: 760px;

  margin: 0 auto 60px;

  text-align: center;
}


.section-heading-center > p:last-child {
  color: var(--light-gunmetal);
}


.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}


.feature-card {
  position: relative;

  min-height: 310px;

  padding: 28px;

  border:
    1px solid rgba(31, 38, 42, 0.12);

  border-radius: var(--radius-card);

  background: rgba(255, 255, 255, 0.26);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}


.feature-card:hover {
  transform: translateY(-5px);

  border-color: rgba(200, 154, 101, 0.8);

  background: rgba(255, 255, 255, 0.52);
}


.feature-index {
  display: inline-block;

  margin-bottom: 54px;

  color: var(--champagne);

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}


.feature-card p {
  color: var(--light-gunmetal);

  font-size: 0.95rem;
}


.rules-link-wrap {
  margin-top: 50px;

  padding-top: 30px;

  border-top:
    1px solid var(--border-light);

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 24px;
}


.rules-link-wrap p {
  margin: 0;

  color: var(--light-gunmetal);
}


.text-link {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: var(--gunmetal);

  font-size: 0.9rem;
  font-weight: 700;

  border-bottom:
    1px solid var(--champagne);

  padding-bottom: 3px;
}


/* ============================================================
   PLAY • TEST • REFINE
============================================================ */

.philosophy-section {
  background:
    linear-gradient(
      180deg,
      #F7F4E8 0%,
      #FFFFF0 100%
    );

  color: var(--gunmetal);
}


.philosophy-section .lead {
  font-weight: 600;
}


.philosophy-section p:not(.section-number):not(.section-kicker):not(.lead) {
  color: var(--light-gunmetal);
}


.philosophy-title {
  margin: 22px 0 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;

  color: var(--gunmetal);

  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 700;

  letter-spacing: -0.04em;
}


.philosophy-title i {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--champagne);
}


/* ============================================================
   ORYX MIX
============================================================ */

.mix-section {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(200, 154, 101, 0.09),
      transparent 32%
    ),
    var(--gunmetal);
}


.mix-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 20px;

  min-height: 42px;

  padding: 0 16px;

  border:
    1px solid rgba(200, 154, 101, 0.6);

  border-radius: 10px;

  color: var(--champagne);

  font-size: 0.76rem;
  font-weight: 700;

  letter-spacing: 0.1em;
}


/* ============================================================
   COMMUNITY
============================================================ */

.community-section {
  padding-block: 140px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(200, 154, 101, 0.11),
      transparent 38%
    ),
    #181E21;

  color: var(--ivory);
}


.community-icon {
  width: 94px;

  margin: 0 auto 28px;
}


.community-section h2 {
  max-width: 780px;

  margin-inline: auto;
}


.community-section .lead {
  max-width: 650px;

  margin:
    0 auto 34px;

  color: rgba(255, 255, 240, 0.72);
}


/* ============================================================
   FOOTER
============================================================ */

.site-footer {
  background: #14191C;
  color: var(--ivory);

  padding: 78px 0 30px;

  border-top:
    1px solid rgba(255, 255, 240, 0.07);
}


.footer-inner {
  width: min(calc(100% - 40px), var(--max-width));

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.2fr;

  gap: 80px;

  align-items: start;
}


.footer-logo {
  width: min(100%, 300px);

  margin-bottom: 20px;
}


.footer-brand p {
  color: rgba(255, 255, 240, 0.6);

  font-size: 0.9rem;
}


.footer-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}


.footer-meta p {
  color: rgba(255, 255, 240, 0.55);

  font-size: 0.84rem;
  line-height: 1.6;
}


.footer-meta strong {
  color: var(--ivory);

  font-size: 0.76rem;
  letter-spacing: 0.06em;

  text-transform: uppercase;
}


.footer-bottom {
  width: min(calc(100% - 40px), var(--max-width));

  margin:
    58px auto 0;

  padding-top: 22px;

  border-top:
    1px solid rgba(255, 255, 240, 0.08);

  display: flex;
  justify-content: space-between;

  gap: 30px;
}


.footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 240, 0.42);

  font-size: 0.75rem;
}


/* ============================================================
   SCROLL REVEAL
============================================================ */

.reveal {
  opacity: 0;

  transform: translateY(22px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}


.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE — TABLET
============================================================ */

@media (max-width: 980px) {

  .desktop-nav {
    display: none;
  }


  .header-inner {
    grid-template-columns: 1fr auto;
  }


  .split-layout {
    grid-template-columns: 1fr;

    gap: 48px;
  }


  .split-heading {
    position: static;
  }


  .split-content {
    max-width: none;
  }


  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .footer-inner {
    grid-template-columns: 1fr;

    gap: 50px;
  }

}


/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */

@media (max-width: 680px) {

  body {
    font-size: 15px;
  }


  .content-wrap,
  .header-inner,
  .footer-inner,
  .footer-bottom {
    width: min(calc(100% - 28px), var(--max-width));
  }


  .section {
    padding: 82px 0;
  }


  .site-header {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }


  .header-inner {
    min-height: 68px;

    gap: 16px;
  }


  .header-icon {
    width: 30px;
    height: 30px;
  }


  .header-brand span {
    display: none;
  }


  .header-cta {
    min-height: 40px;

    padding-inline: 14px;

    font-size: 0.72rem;
  }


  .hero {
    min-height: 100svh;

    padding:
      125px 18px 84px;
  }


  .hero-logo {
    width: min(100%, 470px);

    margin-bottom: 28px;
  }


  .hero .eyebrow {
    font-size: 0.68rem;

    margin-bottom: 20px;
  }


  h1 {
    font-size: clamp(2.6rem, 12vw, 4.5rem);
  }


  h2 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }


  .hero-copy {
    font-size: 1rem;

    line-height: 1.65;
  }


  .hero-actions {
    width: 100%;

    flex-direction: column;
  }


  .hero-actions .button {
    width: 100%;
  }


  .hero-bg-mark {
    width: 380px;
    height: 380px;

    top: 135px;
    right: -210px;
  }


  .feature-grid {
    grid-template-columns: 1fr;
  }


  .feature-card {
    min-height: 0;
  }


  .feature-index {
    margin-bottom: 34px;
  }


  .rules-link-wrap {
    flex-direction: column;
    align-items: flex-start;
  }


  .philosophy-title {
    gap: 12px;

    font-size: clamp(1.9rem, 10vw, 3rem);
  }


  .philosophy-title i {
    width: 5px;
    height: 5px;
  }


  .community-section {
    padding-block: 100px;
  }


  .community-icon {
    width: 78px;
  }


  .large-button {
    width: 100%;
  }


  .footer-meta {
    grid-template-columns: 1fr;

    gap: 16px;
  }


  .footer-bottom {
    flex-direction: column;

    gap: 10px;
  }


  .footer-bottom p {
    max-width: 100%;
  }

}


/* ============================================================
   ACCESSIBILITY / REDUCED MOTION
============================================================ */

@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;
  }

}