:root {
  --bg: #090b0f;
  --bg-soft: #10141a;
  --bg-card: rgba(255,255,255,.045);
  --bg-card-hover: rgba(255,255,255,.075);

  --text: #edf1f7;
  --text-soft: #c8d0dc;
  --muted: #8e9aaa;

  --gold: #d6a154;
  --gold-light: #f0b158;
  --blue: #55baff;

  --line: rgba(255,255,255,.10);
  --line-strong: rgba(214,161,84,.32);

  --radius: 22px;
  --shadow: 0 24px 70px rgba(0,0,0,.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(62,76,96,.32), transparent 38%),
    linear-gradient(180deg, #151a21 0%, #090b0f 55%, #07090c 100%);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

main {
  overflow: hidden;
}

.section {
  position: relative;
  width: 100%;
}

.section-inner,
.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    max(28px, env(safe-area-inset-top))
    0
    max(42px, env(safe-area-inset-bottom));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 88%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.logo-box {
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
}

.logo {
  display: block;
  width: min(72vw, 760px);
  height: min(48vh, 430px);
  object-fit: contain;
  filter:
    drop-shadow(0 24px 34px rgba(0,0,0,.48))
    drop-shadow(0 0 18px rgba(80,170,255,.08));
}

.title {
  margin: 8px 0 0;
  color: var(--gold-light);
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 750;
}

.subtitle {
  margin-top: 13px;
  color: var(--muted);
  font-size: clamp(12px, 1.7vw, 18px);
  line-height: 1.5;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.claim {
  margin-top: 15px;
  color: var(--blue);
  font-size: clamp(12px, 1.4vw, 16px);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 920px;
  margin: clamp(34px, 5vw, 62px) auto 0;
  color: var(--text);
  font-size: clamp(28px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 680;
}

.hero-text {
  max-width: 860px;
  margin: 24px auto 0;
  color: var(--text-soft);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.65;
}

.hero-strong {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--gold-light);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.55;
  font-weight: 620;
}

.cta {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 27px;

  color: #090c10;
  background:
    linear-gradient(135deg, #f0c47d 0%, #d49a47 100%);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 14px;

  font-size: 16px;
  font-weight: 750;
  letter-spacing: .015em;
  text-decoration: none;

  box-shadow:
    0 14px 35px rgba(0,0,0,.28),
    0 0 30px rgba(214,161,84,.08);

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 20px 44px rgba(0,0,0,.34),
    0 0 36px rgba(214,161,84,.14);
}

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

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,.06);
  border-color: rgba(214,161,84,.50);
}

.scroll-link {
  display: inline-flex;
  width: 36px;
  height: 50px;
  margin-top: 42px;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 20px;
  opacity: .7;
}

.scroll-link span {
  width: 5px;
  height: 5px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: translateY(22px);
    opacity: 0;
  }
}

.content-section {
  padding: clamp(78px, 10vw, 140px) 0;
  border-top: 1px solid rgba(255,255,255,.055);
}

.section-alt {
  background:
    radial-gradient(circle at 50% 30%, rgba(72,89,110,.13), transparent 55%),
    rgba(255,255,255,.012);
}

.section-kicker {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.section-title {
  max-width: 850px;
  margin: 16px 0 0;
  color: var(--text);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 680;
}

.cards {
  display: grid;
  gap: 20px;
  margin-top: clamp(38px, 6vw, 70px);
}

.cards-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;

  background:
    linear-gradient(145deg, rgba(255,255,255,.060), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);

  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background:
    linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.032));
}

.card-number {
  margin-bottom: 38px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .18em;
}

.card h3 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.25;
}

.card p {
  margin: 15px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
}

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

.field-card {
  grid-column: span 2;
}

.field-card:nth-child(4),
.field-card:nth-child(5) {
  grid-column: span 3;
}

.field-symbol {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  place-items: center;

  color: var(--gold-light);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(214,161,84,.07);

  font-size: 16px;
  font-weight: 800;
}

.projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(38px, 6vw, 70px);
}

.project {
  min-height: 260px;
  padding: clamp(28px, 4vw, 42px);

  background:
    linear-gradient(145deg, rgba(255,255,255,.052), rgba(255,255,255,.020));
  border: 1px solid var(--line);
  border-radius: var(--radius);

  transition:
    border-color .22s ease,
    transform .22s ease;
}

.project:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.project-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.project h3 {
  margin: 30px 0 0;
  color: var(--gold-light);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -.02em;
}

.project p {
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.philosophy {
  padding: clamp(92px, 13vw, 180px) 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(214,161,84,.09), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,.015), transparent);
  border-top: 1px solid rgba(255,255,255,.055);
}

.philosophy-inner {
  text-align: center;
}

.philosophy blockquote {
  max-width: 980px;
  margin: 28px auto 0;
  color: var(--text);
  font-size: clamp(34px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 680;
}

.philosophy p {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--text-soft);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.7;
}

.footer {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding:
    30px 0
    max(30px, env(safe-area-inset-bottom));
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.065);

  font-size: 12px;
  letter-spacing: .06em;
}

.footer-claim {
  text-align: right;
}

.noscript {
  padding: 24px;
  color: var(--text);
  background: var(--bg);
  text-align: center;
}

@media (max-width: 980px) {
  .cards-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .field-card,
  .field-card:nth-child(4),
  .field-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .section-inner,
  .hero-inner,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .logo {
    width: min(92vw, 620px);
    height: min(39vh, 330px);
  }

  .title {
    letter-spacing: .08em;
  }

  .subtitle {
    letter-spacing: .17em;
  }

  .claim {
    letter-spacing: .08em;
  }

  .hero-title {
    margin-top: 32px;
  }

  .cards-four,
  .fields-grid,
  .projects {
    grid-template-columns: 1fr;
  }

  .card,
  .project {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-claim {
    text-align: center;
  }
}

@media (max-height: 760px) and (orientation: landscape) {
  .hero {
    min-height: auto;
  }

  .logo {
    height: 280px;
  }
}

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

  .scroll-link span {
    animation: none;
  }

  .btn,
  .card,
  .project {
    transition: none;
  }
}

/* ORTANOX_CLEAN_MARKERS_V1 */
.card-number,
.field-symbol {
  display: none !important;
}



/* ORTANOX_FOOTER_CLEAN_V1 */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  text-align: left;
}

.footer-claim {
  text-align: right;
}

@media (max-width: 700px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy,
  .footer-claim {
    text-align: center;
  }
}
