/* =========================================
   GLOBAL
========================================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;

  background: #02070d;
  color: #ffffff;

  font-family: Arial, Helvetica, sans-serif;
}

body { overflow-x: hidden; }

/* =========================================
   FIXED HEADER
========================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 20% 80%;
  z-index: 100;
}

/* =========================================
   HEADER — LEFT 20%
========================================= */

.header-left {
  display: flex;
  height: 150px;
  align-items: flex-start;
  justify-content: center;
  background: #02070d;
}

/* Logo */

.brand {
  width: 500px;
  max-width: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* =========================================
   HEADER — RIGHT 80%
========================================= */

.header-right {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: rgba(2, 7, 13, 0.72);
  backdrop-filter: blur(8px);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 42px);
}

.main-nav a,
.nav-search,
.nav-language {
  color: #f5c400;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* =========================================
   PAGE GRID
========================================= */

.page-content {
  display: grid;
  grid-template-columns: 20% 80%;
  width: 100%;
  min-height: 100vh;
  padding-top: 50px;
}

/* =========================================
   CONTENT — LEFT 20%
========================================= */

.content-left {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  text-align: center;
  background: #02070d;
}

/* =========================================
   HOME COPY
========================================= */

.home-copy { width: 100%; max-width: 380px; }

.home-copy h1 {
  margin: 0 0 32px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.home-copy h1 span { display: block; }

.gold { color: #f5c400; }

.home-copy p {
  margin: 0 auto 32px;
  max-width: 285px;
  font-size: clamp(11px, 1.05vw, 16px);
  line-height: 1.45;
  letter-spacing: 0.03em;
}

/* =========================================
   CTA
========================================= */

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 11px 17px;
  border: 1px solid #f5c400;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.cta span { color: #f5c400; font-size: 15px; }

/* =========================================
   RIGHT CONTENT
========================================= */

.content-right {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 110px);
  overflow: hidden;
}

/* =========================================
   HOME BACKGROUND
========================================= */

.home-worlds {
  position: relative;
  background: #000000;
}

.space-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* =========================================
   ORBITS
========================================= */

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(245, 170, 40, .65);
  border-radius: 50%;
  transform:
    translate(-50%, -50%)
    rotate(-12deg);

  z-index: 2;
  pointer-events: none;
}

/* =========================================
   PILLARS
========================================= */

.pillar {
  position: absolute;
  display: block;
  z-index: 5;
  transform: translate(-50%, -60%);
  transition: transform .3s ease;
}

.pillar img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================
   PILLAR SIZES
========================================= */

.pillar-nw         {width: 40%;left: 20%;top: 30%;}
.pillar-athena     {width: 33%;left: 80%;top: 30%;}
.pillar-technology {width: 30%;left: 20%;top: 70%;}
.pillar-ventures   {width: 28%;left: 80%;top: 70%;}

/* =========================================
   NARRATIVE WORLDS
========================================= */

.narrative-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

/* =========================================
   PILLAR INTRO
========================================= */

.pillar-intro { 
  position: fixed;
  z-index: 3;
  top: 300px;
  left: 0;
  width: 20%;
  max-width: 350px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
}

.pillar-intro img {
  display: block; 
  width: 100%; 
  height: auto; 
}

/* =========================================
   NARRATIVE COPY
========================================= */

.narrative-copy {
  position: fixed;
  bottom: 40px;
  left: 0;
  width: 20%;
  max-width: 500px;
  text-align: center;
}

.narrative-copy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: #ffffff;
}

/* =========================================
   PROJECT AREA
========================================= */

.projects {
  padding: 40px 0vw;
  display: flex;
  flex-direction: column;
  gap: 50px;
  overflow-y: auto;
}

/* =========================================
   PROJECT
========================================= */

.project {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 300px;
  border-bottom: 5px solid white;
}

/* =========================================
   PROJECT IMAGE
========================================= */

.project-image {
  width: 100%;
  overflow: hidden;
}

.project-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 2px solid rgba(245, 196, 0, 0.35);
}

/* =========================================
   PROJECT INFO
========================================= */

.project-info { padding: 5px 20px; }

.project-info h1 {
  margin: 20px 0 12px;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 400;
  color: #ff6262;
  letter-spacing: 0.05em;
}

.project-info h2 {
  margin: 0 0 25px;
  color: #f5c400;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-info h3 {
  margin: 0 0 25px;
  color: #f5c400;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.project-info p {

  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.8);
}

.project-link {
  color: #f5c400;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: .08em;
}

/* =========================================
   ATHENA — PAGE-SPECIFIC RULES
   ========================================= */

/* ---------------------------------------------------------
   LEFT ATHENA COLUMN
   --------------------------------------------------------- */

.athena-left .pillar-intro p {
  margin: 0;
  width: 100%;
}

.athena-left .narrative-copy {
  padding: 0 18px;
}

.athena-left .narrative-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.12em;
  color: #fff;
}

/* ---------------------------------------------------------
   RIGHT CONTENT / SCROLLING AREA
   --------------------------------------------------------- */

.athena-content {
  min-height: calc(100vh - 50px);
  overflow-y: auto;
  overflow-x: hidden;
}

.athena-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 85px 0 100px;
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.athena-hero {
  padding: 0 0 55px;
  border-bottom: 1px solid rgba(245, 196, 0, 0.35);
}

.eyebrow,
.section-label {
  color: #ff6262;
  font-size: 32px;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.athena-hero h1 {
  color: #ff6262;
  margin: 14px 0 4px;
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.athena-hero h2 {
  margin: 0;
  color: #f5c400;
  font-size: clamp(15px, 1.35vw, 21px);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.12em;
}

/* ---------------------------------------------------------
   INTRODUCTION
   --------------------------------------------------------- */

.intro-block {
/*  max-width: 1500px;*/
}

.intro-block h3 {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 200;
  letter-spacing: 0.08em;
}

.intro-block p,
.concept-text p,
.function p,
.section-lead {
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0.035em;
  color: #e8e8e8;
}

.intro-block .lead {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}

.intro-block .principle {
  margin-top: 38px;
  padding: 30px 0 0;
  border-top: 1px solid rgba(245, 196, 0, 0.3);
  color: #f5c400;
  letter-spacing: 0.1em;
}

/* ---------------------------------------------------------
   FOUR PRINCIPLES
   --------------------------------------------------------- */

.concepts {
  padding-top: 50px;
}

.section-label {
  margin-bottom: 30px;
}

.concept-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 42px;
  padding: 65px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.concept-row.reverse {
  display: flex;
  flex-direction: column;
}

.concept-text,
.concept-row.reverse .concept-text {
  width: 100%;
  padding: 0;
}

.concept-text h4,
.function h4 {
  margin: 0 0 18px;
  color: #f5c400;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.concept-text .definition,
.function .definition {
  font-size: 18px;
  color: #fff;
  line-height: 1.55;
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #f5c400;
  border-radius: 50%;
  color: #f5c400;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.example {
  margin-top: 20px;
  padding-left: 18px;
  border-left: 2px solid rgba(245, 196, 0, 0.65);
}

.example strong {
  color: #f5c400;
  font-size: 11px;
  letter-spacing: 0.18em;
}

/* Images always follow their text and adapt to the available width. */

.concept-image {
  width: 100%;
  max-width: none;
  margin: 0;
}

.concept-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 2px solid rgba(245, 196, 0, 0.35);
}

/* ---------------------------------------------------------
   WHAT ATHENA DOES
   --------------------------------------------------------- */

.functions {
  padding-top: 80px;
}

.section-lead {
  max-width: 900px;
/*  margin: 0 0 40px;*/
  font-size: 18px;
}

.functions-image {
  width: 100%;
  max-width: none;
  margin: 0;
}

.functions-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 2px solid rgba(245, 196, 0, 0.35);
}

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

.function {
  min-width: 0;
  padding: 42px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.function:last-child {
  grid-column: 1 / -1;
}

.optional {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 7px;
  border: 1px solid rgba(245, 196, 0, 0.6);
  font-size: 9px;
  vertical-align: middle;
  letter-spacing: 0.14em;
}

/* ---------------------------------------------------------
   CLOSING
   --------------------------------------------------------- */

.closing {
  margin-top: 100px;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(245, 196, 0, 0.4);
  text-align: center;
}

.closing h3 {
  margin: 28px 0 20px;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.closing p {
  margin: 0;
  color: #f5c400;
  font-size: 28px;
  line-height: 1.7;
  letter-spacing: 0.15em;
}

/* =========================================
   RESPONSIVE — TABLET
   ========================================= */

@media (max-width: 1100px) {

  /* Header */
  .main-nav {
    gap: 12px;
  }

  .main-nav a {
    font-size: 11px;
  }

  /* Keep the 20 / 80 architecture on tablet,
     but prevent content from forcing horizontal overflow. */
  .page-content {
    grid-template-columns: 20% 80%;
  }

  .content-left,
  .content-right,
  .projects,
  .athena-content {
    min-width: 0;
  }

  /* Narrative Worlds */
  .pillar-intro {
    width: 20%;
    max-width: none;
    padding: 0 12px;
  }

  .narrative-copy {
    width: 20%;
    padding: 0 10px;
  }

  .narrative-copy p {
    font-size: 11px;
  }

  .projects {
    padding: 30px 0;
    gap: 35px;
  }

  .project-info {
    padding: 5px 16px;
  }

  .project-info h1 {
    font-size: clamp(26px, 3vw, 36px);
  }

  .project-info h2 {
    font-size: 17px;
  }

  .project-info p {
    font-size: 16px;
  }

  /* ATHENA uses the same left-column geometry as Narrative Worlds. */
  .athena-left .narrative-copy {
    padding: 0 10px;
  }

  .athena-left .narrative-copy p {
    font-size: 12px;
  }

  .concept-row,
  .concept-row.reverse {
    gap: 32px;
  }

  .concept-image {
    max-width: none;
  }

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

  .function:last-child {
    grid-column: auto;
  }

  .athena-inner {
    padding-left: 0;
    padding-right: 0;
  }

}


/* =========================================
   RESPONSIVE — MOBILE LANDSCAPE
   ========================================= */

@media (max-width: 760px) and (orientation: landscape) {

  html,
  body {
    width: 100%;
    min-width: 0;
  }

  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  /* Keep the 20 / 80 architecture in landscape. */
  .site-header {
    position: fixed;
    display: grid;
    grid-template-columns: 20% 80%;
    width: 100%;
  }

  .header-left {
    width: 100%;
    height: 100px;
  }

  .brand {
    width: 500px;
    max-width: 90%;
  }

  .header-right {
    width: 100%;
    height: 50px;
    min-height: 50px;
    padding: 0 8px;
  }

  .main-nav {
    width: 100%;
    flex-wrap: nowrap;
    gap: clamp(7px, 1.4vw, 16px);
  }

  .main-nav a {
    font-size: clamp(7px, 1.15vw, 10px);
    line-height: 1.1;
  }

  .page-content {
    display: grid;
    grid-template-columns: 20% 80%;
    width: 100%;
    min-height: 100vh;
    padding-top: 50px;
  }

  .content-left {
    display: flex;
    min-width: 0;
    min-height: calc(100vh - 50px);
    padding: 10px 6px;
  }

  .content-right,
  .athena-content {
    width: 100%;
    min-width: 0;
    min-height: calc(100vh - 50px);
  }

  /* HOME */
  .home-copy {
    width: 100%;
    max-width: none;
  }

  .home-copy h1 {
    margin-bottom: 14px;
    font-size: clamp(12px, 2.2vw, 19px);
    line-height: 1.08;
  }

  .home-copy p {
    max-width: none;
    margin-bottom: 14px;
    font-size: clamp(8px, 1.25vw, 11px);
    line-height: 1.35;
  }

  .cta {
    gap: 8px;
    padding: 6px 9px;
    font-size: 7px;
  }

  .cta span {
    font-size: 10px;
  }

  .home-worlds {
    min-height: calc(100vh - 50px);
    height: calc(100vh - 50px);
    overflow: hidden;
  }

  .pillar-nw {
    width: 58%;
    left: 28%;
    top: 30%;
  }

  .pillar-athena {
    width: 48%;
    left: 76%;
    top: 30%;
  }

  .pillar-technology {
    width: 45%;
    left: 28%;
    top: 70%;
  }

  .pillar-ventures {
    width: 42%;
    left: 76%;
    top: 70%;
  }

  /* NARRATIVE WORLDS / ATHENA LEFT COLUMNS */
  .pillar-intro {
    position: fixed;
    top: 160px;
    left: 0;
    width: 20%;
    max-width: none;
    padding: 0 6px;
  }

  .narrative-copy {
    position: fixed;
    bottom: 12px;
    left: 0;
    width: 20%;
    max-width: none;
    padding: 0 5px;
  }

  .narrative-copy p {
    margin: 0;
    font-size: clamp(7px, 1.05vw, 9px);
    line-height: 1.3;
    letter-spacing: 0.06em;
  }

  /* Narrative Worlds projects remain readable and scrollable. */
  .projects {
    width: 100%;
    padding: 20px 0 40px;
    gap: 25px;
    overflow: visible;
  }

  .project {
    width: 100%;
    min-width: 0;
    min-height: 0;
    display: block;
    padding-bottom: 25px;
    border-bottom: 3px solid white;
  }

  .project-info {
    width: 100%;
    padding: 0 12px;
  }

  .project-info h1 {
    margin: 14px 0 8px;
    font-size: clamp(20px, 4vw, 28px);
  }

  .project-info h2 {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .project-info p {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.45;
  }

  .project-link {
    font-size: 14px;
  }

  /* ATHENA */
  .athena-inner {
    width: 100%;
    padding: 45px 14px 60px;
  }

  .athena-hero h1 {
    font-size: clamp(34px, 7vw, 52px);
  }

  .athena-hero h2 {
    font-size: 11px;
    line-height: 1.4;
  }

  .eyebrow,
  .section-label {
    font-size: 13px;
  }

  .intro-block {
    padding: 35px 0;
  }

  .intro-block h3 {
    font-size: 18px;
  }

  .intro-block p,
  .concept-text p,
  .function p,
  .section-lead {
    font-size: 13px;
    line-height: 1.45;
  }

  .intro-block .lead {
    font-size: 16px;
  }

  .concept-row,
  .concept-row.reverse {
    padding: 35px 0;
    gap: 20px;
  }

  .concept-text,
  .concept-row.reverse .concept-text {
    max-width: none;
  }

  .concept-text h4,
  .function h4 {
    font-size: 20px;
  }

  .concept-text .definition,
  .function .definition {
    font-size: 15px;
  }

  .concept-image,
  .functions-image {
    width: 100%;
    max-width: none;
  }

  .concept-image img,
  .functions-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

/* =========================================
   RESPONSIVE — MOBILE PORTRAIT
   ========================================= */

@media (max-width: 760px) and (orientation: portrait) {

  html,
  body {
    width: 100%;
    min-width: 0;
  }

  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  /* Single-column mobile header. Keep the logo fully visible. */
  .site-header {
    position: relative;
    display: block;
    width: 100%;
  }

  .header-left {
    width: 100%;
    height: 82px;
    padding: 8px 0;
  }

  .brand {
    width: auto;
    max-width: 90%;
    max-height: 66px;
  }

  .brand img {
    width: auto;
    max-width: 100%;
    max-height: 66px;
    height: auto;
  }

  .header-right {
    width: 100%;
    height: auto;
    min-height: 55px;
    padding: 10px 12px;
  }

  .main-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px 16px;
  }

  .main-nav a {
    font-size: 10px;
    line-height: 1.2;
  }

  /* No left column in portrait. */
  .page-content {
    display: block;
    width: 100%;
    min-height: 0;
    height: auto;
    padding-top: 0;
  }

  .content-left {
    display: none;
  }

  .content-right,
  .athena-content {
    width: 100%;
    min-width: 0;
    min-height: 0;
    overflow: visible;
  }

  /* HOME */
  .home-worlds {
    width: 100%;
    min-height: calc(100vh - 137px);
    height: calc(100vh - 137px);
    overflow: hidden;
  }

  .space-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pillar {
    max-width: 75%;
  }

  .pillar-nw {
    width: 58%;
    left: 28%;
    top: 30%;
  }

  .pillar-athena {
    width: 48%;
    left: 76%;
    top: 30%;
  }

  .pillar-technology {
    width: 45%;
    left: 28%;
    top: 70%;
  }

  .pillar-ventures {
    width: 42%;
    left: 76%;
    top: 70%;
  }

  /* Narrative Worlds */
  .projects {
    width: 100%;
    padding: 25px 0 50px;
    gap: 30px;
    overflow: visible;
  }

  .project {
    width: 100%;
    min-width: 0;
    min-height: 0;
    display: block;
    border-bottom: 3px solid white;
    padding-bottom: 30px;
  }

  .project-image {
    width: 100%;
  }

  .project-image img {
    width: 100%;
    height: auto;
  }

  .project-info {
    width: 100%;
    padding: 0 18px;
  }

  .project-info h1 {
    margin: 18px 0 10px;
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.12;
  }

  .project-info h2 {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.35;
  }

  .project-info h3 {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.4;
  }

  .project-info p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.55;
  }

  .project-link {
    font-size: 16px;
  }

  .project-link img {
    max-width: 120px;
    height: auto;
  }

  /* ATHENA */
  .athena-content {
    width: 100%;
  }

  .athena-inner {
    width: 100%;
    max-width: none;
    padding: 45px 22px 70px;
  }

  .athena-hero {
    padding-top: 0;
  }

  .eyebrow,
  .section-label {
    font-size: 16px;
    letter-spacing: 0.12em;
  }

  .athena-hero h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .athena-hero h2 {
    font-size: 13px;
    line-height: 1.5;
  }

  .intro-block {
    padding: 45px 0;
  }

  .intro-block h3 {
    font-size: 21px;
    line-height: 1.25;
  }

  .intro-block p,
  .concept-text p,
  .function p,
  .section-lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .intro-block .lead {
    font-size: 18px;
  }

  .concept-row {
    padding: 45px 0;
    gap: 25px;
  }

  .concept-text,
  .concept-row.reverse .concept-text {
    max-width: none;
  }

  .concept-text h4,
  .function h4 {
    font-size: 22px;
  }

  .concept-text .definition,
  .function .definition {
    font-size: 17px;
  }

  .concept-image {
    width: 100%;
    max-width: none;
  }

  .concept-image img,
  .functions-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .functions {
    padding-top: 55px;
  }

  .functions-image {
    width: 100%;
    max-width: none;
    margin-bottom: 55px;
  }

  .function-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .function {
    padding: 32px 0 38px;
  }

  .function:last-child {
    grid-column: auto;
  }

  .closing {
    margin-top: 60px;
    padding-top: 55px;
  }

  .closing h3 {
    font-size: 27px;
  }

  .closing p {
    font-size: 12px;
  }
}


/* =========================================================
   FINAL LAYOUT NORMALIZATION — ALL PAGES
   The three pages share exactly the same left-column geometry.
========================================================= */

.content-left {
  position: relative;
  z-index: 2;
}

.content-right {
  position: relative;
  z-index: 1;
}

.pillar-intro {
  left: 0;
  z-index: 3;
}

@media (min-width: 761px) {
  .header-left {
    align-items: flex-start;
  }
}

/* =========================================================
   TECHNOLOGY — PAGE-SPECIFIC RULES
   ========================================================= */

.technology-content {
  min-height: calc(100vh - 50px);
  overflow-y: auto;
  overflow-x: hidden;
}

.technology-inner {
  width: 100%;
  padding: 85px 0 100px;
}

.technology-hero {
  padding: 0 0 55px;
  border-bottom: 1px solid rgba(245, 196, 0, 0.35);
}

.technology-hero h1 {
  margin: 14px 0 22px;
  color: #ff6262;
  font-size: clamp(42px, 4.5vw, 52px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.05;
}

.technology-lead,
.technology-intro p,
.technology-block p,
.technology-methods p {
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: 0.035em;
  color: #e8e8e8;
}

.technology-lead {
  max-width: 1500px;
  margin: 0;
  color: #fff;
}

.technology-section {
  padding-top: 80px;
}

.technology-section + .technology-section {
  margin-top: 100px;
  padding-top: 90px;
  border-top: 1px solid rgba(245, 196, 0, 0.4);
}

.technology-section .section-label {
  margin-bottom: 30px;
}

.technology-intro {
  max-width: 1500px;
  margin-bottom: 55px;
}

.technology-intro h2 {
  margin: 0 0 20px;
  color: #f5c400;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.technology-image {
  width: 100%;
  margin: 0 0 65px;
}

.technology-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid rgba(245, 196, 0, 0.35);
}

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

.technology-block {
  min-width: 0;
  padding: 42px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.technology-block h3 {
  margin: 0 0 18px;
  color: #f5c400;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.technology-block h4 {
  margin: 24px 0 8px;
  color: #f5c400;
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 0.12em;
}

.technology-block p {
  margin: 0 0 18px;
}

.keyword-line {
  color: #f5c400 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  letter-spacing: 0.09em !important;
}

.technology-methods {
  margin-top: 20px;
  padding: 35px 0 0;
  border-top: 1px solid rgba(245, 196, 0, 0.3);
}

.technology-methods h3 {
  margin: 0 0 15px;
  color: #f5c400;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.technology-methods p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.technology-closing {
  margin-top: 100px;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(245, 196, 0, 0.4);
  text-align: center;
}

.technology-closing h2 {
  margin: 0;
  color: #f5c400;
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .technology-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .technology-hero h1 {
    font-size: clamp(38px, 5vw, 62px);
  }

  .technology-lead,
  .technology-intro p,
  .technology-block p {
    font-size: 16px;
  }

  .technology-grid {
    gap: 0 30px;
  }

  .technology-block h3 {
    font-size: 21px;
  }
}

@media (max-width: 760px) and (orientation: landscape) {
  .technology-inner {
    padding: 45px 12px 60px;
  }

  .technology-hero h1 {
    font-size: clamp(30px, 6vw, 46px);
  }

  .technology-lead,
  .technology-intro p,
  .technology-block p {
    font-size: 13px;
    line-height: 1.45;
  }

  .technology-section {
    padding-top: 50px;
  }

  .technology-section + .technology-section {
    margin-top: 60px;
    padding-top: 60px;
  }

  .technology-intro {
    margin-bottom: 35px;
  }

  .technology-intro h2 {
    font-size: 20px;
  }

  .technology-image {
    margin-bottom: 35px;
  }

  .technology-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .technology-block {
    padding: 28px 0 32px;
  }

  .technology-block h3 {
    font-size: 18px;
  }

  .technology-block h4 {
    font-size: 11px;
  }

  .keyword-line {
    font-size: 11px !important;
  }

  .technology-closing {
    margin-top: 60px;
    padding-top: 50px;
  }

  .technology-closing h2 {
    font-size: 22px;
  }
}

@media (max-width: 760px) and (orientation: portrait) {
  .technology-inner {
    padding: 45px 22px 70px;
  }

  .technology-hero h1 {
    font-size: clamp(32px, 11vw, 52px);
  }

  .technology-lead,
  .technology-intro p,
  .technology-block p {
    font-size: 15px;
    line-height: 1.55;
  }

  .technology-section {
    padding-top: 55px;
  }

  .technology-section + .technology-section {
    margin-top: 65px;
    padding-top: 65px;
  }

  .technology-intro {
    margin-bottom: 40px;
  }

  .technology-intro h2 {
    font-size: 21px;
  }

  .technology-image {
    margin-bottom: 45px;
  }

  .technology-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .technology-block {
    padding: 32px 0 38px;
  }

  .technology-block h3 {
    font-size: 20px;
  }

  .technology-block h4 {
    font-size: 12px;
  }

  .keyword-line {
    font-size: 12px !important;
  }

  .technology-methods p {
    font-size: 12px;
    line-height: 1.6;
  }

  .technology-closing {
    margin-top: 60px;
    padding-top: 55px;
  }

  .technology-closing h2 {
    font-size: 25px;
  }
}


/* =========================================================
   VENTURES — PAGE-SPECIFIC RULES
   ========================================================= */

.ventures-content {
  min-height: calc(100vh - 50px);
  overflow-y: auto;
  overflow-x: hidden;
}

.ventures-inner {
  width: 100%;
  padding: 85px 0 100px;
}

.ventures-hero {
  padding: 0 0 55px;
  border-bottom: 1px solid rgba(245, 196, 0, 0.35);
}

.ventures-hero h1 {
  margin: 14px 0 22px;
  color: #ff6262;
  font-size: clamp(42px, 4.5vw, 52px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.05;
}

.ventures-hero h2 {
  margin: 0 0 28px;
  color: #f5c400;
  font-size: clamp(15px, 1.35vw, 21px);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.ventures-lead {
  max-width: 1500px;
  margin: 0;
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: 0.035em;
  color: #e8e8e8;
}

.ventures-overview {
  width: 100%;
  margin: 55px 0 0;
}

.ventures-overview img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid rgba(245, 196, 0, 0.35);
}

.ventures-section {
  padding-top: 80px;
}

.ventures-section .section-label {
  margin-bottom: 30px;
}

.ventures-intro {
  max-width: 1500px;
  margin-bottom: 55px;
}

.ventures-intro p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0.035em;
  color: #e8e8e8;
}

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

.venture-item {
  min-width: 0;
  padding: 42px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.venture-media {
  width: 100%;
  margin-bottom: 30px;
}

.venture-media img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  border: 2px solid rgba(245, 196, 0, 0.35);
}

.venture-item h3 {
  margin: 0 0 10px;
  color: #f5c400;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.venture-type {
  margin: 0 0 18px;
  color: #ff6262;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.venture-item p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.025em;
  color: #e8e8e8;
}

.venture-link {
  display: inline-block;
  color: #f5c400;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(245, 196, 0, 0.55);
  padding-bottom: 4px;
}

.venture-link:hover {
  color: #ff6262;
}

.ventures-more {
  margin-top: 75px;
  padding: 70px 0 25px;
  border-top: 1px solid rgba(245, 196, 0, 0.4);
  text-align: center;
}

.ventures-more h2 {
  margin: 0 0 22px;
  color: #f5c400;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.ventures-more p {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0.035em;
  color: #e8e8e8;
}

@media (max-width: 1100px) {
  .ventures-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .ventures-lead,
  .ventures-intro p,
  .venture-item p,
  .ventures-more p {
    font-size: 16px;
  }

  .ventures-grid {
    gap: 0 30px;
  }

  .venture-item h3 {
    font-size: 22px;
  }
}

@media (max-width: 760px) and (orientation: landscape) {
  .ventures-inner {
    padding: 45px 12px 60px;
  }

  .ventures-hero h1 {
    font-size: clamp(30px, 6vw, 46px);
  }

  .ventures-hero h2 {
    font-size: 18px;
  }

  .ventures-lead,
  .ventures-intro p,
  .venture-item p,
  .ventures-more p {
    font-size: 13px;
    line-height: 1.45;
  }

  .ventures-section {
    padding-top: 50px;
  }

  .ventures-intro {
    margin-bottom: 35px;
  }

  .ventures-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .venture-item {
    padding: 28px 0 32px;
  }

  .venture-media {
    margin-bottom: 25px;
  }

  .venture-media img {
    max-width: 280px;
  }

  .venture-item h3 {
    font-size: 18px;
  }

  .venture-type {
    font-size: 11px;
  }

  .ventures-more {
    margin-top: 60px;
    padding-top: 50px;
  }

  .ventures-more h2 {
    font-size: 22px;
  }
}

@media (max-width: 760px) and (orientation: portrait) {
  .ventures-inner {
    padding: 45px 22px 70px;
  }

  .ventures-hero h1 {
    font-size: clamp(32px, 11vw, 52px);
  }

  .ventures-hero h2 {
    font-size: 13px;
    line-height: 1.5;
  }

  .ventures-lead,
  .ventures-intro p,
  .venture-item p,
  .ventures-more p {
    font-size: 15px;
    line-height: 1.55;
  }

  .ventures-section {
    padding-top: 55px;
  }

  .ventures-intro {
    margin-bottom: 40px;
  }

  .ventures-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .venture-item {
    padding: 32px 0 38px;
  }

  .venture-media {
    margin-bottom: 30px;
  }

  .venture-media img {
    max-width: 310px;
  }

  .venture-item h3 {
    font-size: 20px;
  }

  .venture-type {
    font-size: 12px;
  }

  .ventures-more {
    margin-top: 60px;
    padding-top: 55px;
  }

  .ventures-more h2 {
    font-size: 25px;
  }
}

/* =========================================================
   ABOUT — PAGE-SPECIFIC RULES
   ========================================================= */

.about-content {
  min-height: calc(100vh - 50px);
  overflow-y: auto;
  overflow-x: hidden;
}

.about-inner {
  width: 100%;
  padding: 85px 0 100px;
}

.about-hero {
  padding: 0 0 55px;
  border-bottom: 1px solid rgba(245, 196, 0, 0.35);
}

.about-hero h1 {
  margin: 14px 0 22px;
  color: #ff6262;
  font-size: clamp(42px, 4.5vw, 52px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.05;
}

.about-hero h2 {
  margin: 0 0 28px;
  color: #f5c400;
  font-size: clamp(15px, 1.35vw, 21px);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.about-lead,
.about-section p,
.about-vision p,
.about-contact p {
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: 0.035em;
  color: #e8e8e8;
}

.about-lead {
  max-width: 1500px;
  margin: 0;
  color: #fff;
}

.about-overview {
  width: 100%;
  margin: 55px 0 0;
}

.about-overview img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid rgba(245, 196, 0, 0.35);
}

.about-section {
  padding-top: 80px;
}

.about-section + .about-section {
  margin-top: 100px;
  padding-top: 90px;
  border-top: 1px solid rgba(245, 196, 0, 0.4);
}

.about-section .section-label {
  margin-bottom: 30px;
}

.about-section-intro {
  max-width: 1500px;
  margin-bottom: 55px;
}

.about-section-intro p {
  margin: 0;
}

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

.about-block {
  min-width: 0;
  padding: 42px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-block h3 {
  margin: 0 0 18px;
  color: #f5c400;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.about-block p {
  margin: 0;
}

.about-vision {
  padding-top: 0;
}

.about-vision .vision-highlight {
  margin: 0 0 28px;
  color: #f5c400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.about-vision p {
  margin: 0 0 24px;
}

.about-vision .vision-closing {
  margin-top: 35px;
  color: #f5c400;
  font-weight: 400;
}

.about-contact {
  margin-top: 100px;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(245, 196, 0, 0.4);
}

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

.about-contact-block {
  min-width: 0;
  padding: 35px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-contact h3 {
  margin: 0 0 18px;
  color: #f5c400;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.about-contact p {
  margin: 0 0 16px;
}

.about-contact a {
  color: #ffffff;
  text-decoration: none;
}

.about-contact a:hover {
  color: #f5c400;
}

.about-contact .contact-label {
  display: block;
  margin-bottom: 5px;
  color: #f5c400;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.about-left {
  position: relative;
}

.about-pillar {
  position: fixed;
  top: 300px;
  left: 0;
  width: 20%;
  max-width: 350px;
  padding: 0 18px;
  text-align: center;
}

.about-pillar h1 {
  margin: 0 0 22px;
  color: #ff6262;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.about-pillar p {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.1em;
}

@media (max-width: 1100px) {
  .about-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .about-lead,
  .about-section p,
  .about-vision p,
  .about-contact p {
    font-size: 16px;
  }

  .about-grid,
  .about-contact-grid {
    gap: 0 30px;
  }

  .about-block h3,
  .about-contact h3 {
    font-size: 21px;
  }

  .about-pillar {
    width: 20%;
    max-width: none;
    padding: 0 10px;
  }
}

@media (max-width: 760px) and (orientation: landscape) {
  .about-inner {
    padding: 45px 12px 60px;
  }

  .about-hero h1 {
    font-size: clamp(30px, 6vw, 46px);
  }

  .about-hero h2 {
    font-size: 11px;
  }

  .about-lead,
  .about-section p,
  .about-vision p,
  .about-contact p {
    font-size: 13px;
    line-height: 1.45;
  }

  .about-section {
    padding-top: 50px;
  }

  .about-section + .about-section {
    margin-top: 60px;
    padding-top: 60px;
  }

  .about-section-intro {
    margin-bottom: 35px;
  }

  .about-grid,
  .about-contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-block,
  .about-contact-block {
    padding: 28px 0 32px;
  }

  .about-block h3,
  .about-contact h3 {
    font-size: 18px;
  }

  .about-overview {
    margin-top: 35px;
  }

  .about-vision .vision-highlight {
    font-size: 21px;
  }

  .about-contact {
    margin-top: 60px;
    padding-top: 50px;
  }
}

@media (max-width: 760px) and (orientation: portrait) {
  .about-inner {
    padding: 45px 22px 70px;
  }

  .about-hero h1 {
    font-size: clamp(32px, 11vw, 52px);
  }

  .about-hero h2 {
    font-size: 13px;
    line-height: 1.5;
  }

  .about-lead,
  .about-section p,
  .about-vision p,
  .about-contact p {
    font-size: 15px;
    line-height: 1.55;
  }

  .about-section {
    padding-top: 55px;
  }

  .about-section + .about-section {
    margin-top: 65px;
    padding-top: 65px;
  }

  .about-section-intro {
    margin-bottom: 40px;
  }

  .about-grid,
  .about-contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-block,
  .about-contact-block {
    padding: 32px 0 38px;
  }

  .about-block h3,
  .about-contact h3 {
    font-size: 20px;
  }

  .about-overview {
    margin-top: 40px;
  }

  .about-vision .vision-highlight {
    font-size: 24px;
  }

  .about-contact {
    margin-top: 60px;
    padding-top: 55px;
  }
}
