/* ============================================================
   ATG Pardis  -  theme and page components.
   Carried over from the original Pardis page so the warmth, the
   drifting light and the slow feel survive the move into the hub.
   The fixed background photo was dropped: it came from a third
   party host that the site's own CSP does not allow.
   ============================================================ */

:root {
  --ocean: #26b5c0;
  --ocean2: #1a8a93;
  --coral: #e8734a;
  --gold: #c9962a;
  --gold2: #e4b84a;
  --palm: #3d7a5c;
  --sand: #f0e6cc;
  --bg: #0c1a20;
  --bg2: #101f27;
  --bg3: #152530;
  --text: #ede8df;
  --muted: #7fa0a4;
  --bro: rgba(38, 181, 192, 0.16);
  --brc: rgba(232, 115, 74, 0.16);
  --brg: rgba(201, 150, 42, 0.18);
  --glow-o:
    0 0 40px rgba(38, 181, 192, 0.45), 0 0 80px rgba(38, 181, 192, 0.15);
  --glow-c:
    0 0 40px rgba(232, 115, 74, 0.45), 0 0 80px rgba(232, 115, 74, 0.15);
  --glow-g:
    0 0 30px rgba(201, 150, 42, 0.4), 0 0 60px rgba(201, 150, 42, 0.12);
  --fh: "Playfair Display", Georgia, serif;
  --fb: "DM Sans", system-ui, sans-serif;
  --r: 8px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
}
strong {
  color: var(--sand);
  font-weight: 600;
}

/* ── SCENE ── */
.scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
/* Deep warm vignette over the photo */
.scene-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 120% 100% at 50% 50%,
    transparent 30%,
    rgba(12, 26, 32, 0.7) 100%
  );
}

.scene-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 130% 60% at 50% 110%,
      rgba(38, 181, 192, 0.09) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 80% 40% at 82% 18%,
      rgba(232, 115, 74, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 55% 35% at 12% 32%,
      rgba(201, 150, 42, 0.05) 0%,
      transparent 55%
    );
}
.horizon {
  position: absolute;
  bottom: 0;
  left: -20%;
  width: 140%;
  height: 42%;
  background: linear-gradient(
    0deg,
    rgba(232, 115, 74, 0.07) 0%,
    rgba(201, 150, 42, 0.04) 25%,
    transparent 60%
  );
}
.water-grid {
  position: absolute;
  bottom: -6%;
  left: -30%;
  width: 160%;
  height: 36%;
  background-image:
    linear-gradient(rgba(38, 181, 192, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 181, 192, 0.04) 1px, transparent 1px);
  background-size: 110px 38px;
  transform: perspective(700px) rotateX(58deg);
  transform-origin: center bottom;
  animation: wflow 5.5s linear infinite;
}
@keyframes wflow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 38px;
  }
}
.sun-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(232, 115, 74, 0.14) 0%,
    rgba(201, 150, 42, 0.06) 40%,
    transparent 70%
  );
  top: -210px;
  right: -190px;
  border-radius: 50%;
  filter: blur(60px);
  animation: odrift1 28s ease-in-out infinite alternate;
}
.ocean-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(38, 181, 192, 0.13) 0%,
    transparent 70%
  );
  bottom: -160px;
  left: -210px;
  border-radius: 50%;
  filter: blur(70px);
  animation: odrift2 33s ease-in-out infinite alternate;
}
.gold-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(201, 150, 42, 0.07) 0%,
    transparent 70%
  );
  top: 30%;
  left: 38%;
  border-radius: 50%;
  filter: blur(80px);
  animation: odrift3 40s ease-in-out infinite alternate;
}
@keyframes odrift1 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-60px, 80px) scale(1.15);
  }
}
@keyframes odrift2 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(80px, -60px) scale(1.2);
  }
}
@keyframes odrift3 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-40px, 50px) scale(1.1);
  }
}
.particles {
  position: absolute;
  inset: 0;
}
.p {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold2);
  opacity: 0;
  animation: pfloat 8s ease-in-out infinite;
}
.p:nth-child(1) {
  top: 12%;
  left: 18%;
  animation-duration: 7s;
  animation-delay: 0s;
  background: var(--ocean);
}
.p:nth-child(2) {
  top: 22%;
  left: 72%;
  animation-duration: 9s;
  animation-delay: 1.2s;
  background: var(--gold2);
}
.p:nth-child(3) {
  top: 55%;
  left: 14%;
  animation-duration: 8s;
  animation-delay: 2.1s;
  background: var(--coral);
}
.p:nth-child(4) {
  top: 68%;
  left: 82%;
  animation-duration: 6s;
  animation-delay: 0.4s;
  background: var(--ocean);
}
.p:nth-child(5) {
  top: 38%;
  left: 48%;
  animation-duration: 10s;
  animation-delay: 1.8s;
  background: var(--gold2);
}
.p:nth-child(6) {
  top: 82%;
  left: 38%;
  animation-duration: 7s;
  animation-delay: 3.2s;
  background: var(--ocean);
}
.p:nth-child(7) {
  top: 8%;
  left: 58%;
  animation-duration: 8s;
  animation-delay: 0.9s;
  background: var(--coral);
}
.p:nth-child(8) {
  top: 48%;
  left: 88%;
  animation-duration: 9s;
  animation-delay: 2.8s;
  background: var(--gold2);
}
@keyframes pfloat {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  15% {
    opacity: 0.75;
  }
  85% {
    opacity: 0.5;
  }
  100% {
    transform: translate(12px, -22px) scale(1.5);
    opacity: 0;
  }
}

/* ── LAYOUT ── */
.w {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.c {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── TOPBAR ── */
.tb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(38, 181, 192, 0.14);
  background: rgba(12, 26, 32, 0.82);
  backdrop-filter: blur(24px);
  z-index: 100;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tbl {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.logo-mark {
  width: 42px;
  height: 42px;
  color: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 14px rgba(38, 181, 192, 0.45));
  font-family: var(--fh);
  font-weight: 900;
  font-size: 0.5rem;
  color: #fff;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(38, 181, 192, 0.38);
}
.wm {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--sand);
  line-height: 1.1;
}
.wm em {
  color: var(--ocean);
  font-style: normal;
}
.wt {
  font-family: var(--fb);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  font-weight: 500;
}
.tbn {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.tbn a {
  font-family: var(--fb);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color 0.2s;
  font-weight: 500;
}
.tbn a:hover {
  color: var(--ocean);
}
.passion-tag {
  font-family: var(--fb);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border: 1px solid rgba(201, 150, 42, 0.4);
  color: var(--gold2);
  border-radius: 20px;
  background: rgba(201, 150, 42, 0.06);
}

/* ── HERO ── */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}
.hi {
  max-width: 920px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--fb);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 2rem;
  padding: 0.45rem 1.35rem;
  border: 1px solid rgba(38, 181, 192, 0.22);
  border-radius: 30px;
  background: rgba(38, 181, 192, 0.055);
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--ocean);
  opacity: 0.45;
}
.ht {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(3.4rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  color: var(--sand);
}
.ht .atg {
  display: block;
  color: var(--ocean);
  animation: titleglow 5s ease-in-out infinite alternate;
}
.ht .par {
  display: block;
}
@keyframes titleglow {
  from {
    text-shadow:
      0 0 30px rgba(38, 181, 192, 0.3),
      0 0 60px rgba(38, 181, 192, 0.1);
  }
  to {
    text-shadow:
      0 0 60px rgba(38, 181, 192, 0.7),
      0 0 120px rgba(38, 181, 192, 0.25),
      0 0 200px rgba(38, 181, 192, 0.07);
  }
}
.hs {
  font-family: var(--fb);
  font-size: clamp(0.82rem, 2.1vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.hs span {
  color: var(--coral);
}
.hd {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 1.6rem;
  line-height: 1.95;
  font-weight: 300;
}

/* Honest project notice  -  no fake countdown */
.project-notice {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(201, 150, 42, 0.065);
  border: 1px solid rgba(201, 150, 42, 0.2);
  border-radius: var(--r);
  padding: 0.9rem 1.4rem;
  margin: 0 auto 2.5rem;
  text-align: left;
  max-width: 640px;
}
.notice-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.notice-text {
  font-family: var(--fb);
  font-size: 0.81rem;
  color: rgba(228, 184, 74, 0.82);
  line-height: 1.65;
  font-weight: 400;
}

/* CTA buttons */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--fb);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.88rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  border: none;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.45s;
}
.btn:hover::before {
  transform: translateX(100%);
}
.btn-ocean {
  background: var(--ocean);
  color: #0c1a20;
  box-shadow: 0 4px 24px rgba(38, 181, 192, 0.32);
  font-weight: 700;
}
.btn-ocean:hover {
  box-shadow: var(--glow-o);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--coral);
  border: 1px solid rgba(232, 115, 74, 0.32);
}
.btn-outline:hover {
  background: rgba(232, 115, 74, 0.07);
  box-shadow: var(--glow-c);
  transform: translateY(-2px);
}

/* Feature strip */
.fstrip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: rgba(38, 181, 192, 0.09);
  border: 1px solid rgba(38, 181, 192, 0.1);
  border-radius: var(--r);
  overflow: hidden;
}
.fc {
  background: var(--bg2);
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: background 0.2s;
  position: relative;
}
.fc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ocean), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.fc:hover {
  background: var(--bg3);
}
.fc:hover::after {
  transform: scaleX(1);
}
.fi {
  width: 36px;
  height: 36px;
  border-radius: var(--r);
  background: rgba(38, 181, 192, 0.08);
  border: 1px solid rgba(38, 181, 192, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.15rem;
}
.fi svg {
  width: 15px;
  height: 15px;
  stroke: var(--ocean);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fn {
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sand);
}
.fd {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ── SECTIONS ── */
.sec {
  padding: 5.5rem 0;
  border-top: 1px solid rgba(38, 181, 192, 0.09);
}
.sec-warm {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}

.slb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--fb);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 0.95rem;
}
.slb::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--ocean);
  opacity: 0.4;
}
.slb-gold {
  color: var(--gold2);
}
.slb-gold::after {
  background: var(--gold2);
}
.slb-coral {
  color: var(--coral);
}
.slb-coral::after {
  background: var(--coral);
}

.st {
  font-family: var(--fh);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.8vw, 2.7rem);
  color: var(--sand);
  margin-bottom: 1.1rem;
  line-height: 1.12;
}
.st span {
  color: var(--ocean);
}
.st .coral {
  color: var(--coral);
}
.st .gold {
  color: var(--gold2);
}
.sb {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.95;
  max-width: 560px;
  font-weight: 300;
}

/* ── ISLAND SECTION ── */
.island-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.island-vis {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 390px;
  margin: 0 auto;
}
.iw-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(38, 181, 192, 0.18);
  animation: iwpulse 4s ease-in-out infinite;
}
.iw-ring2 {
  inset: 8%;
  border-color: rgba(38, 181, 192, 0.13);
  animation-duration: 5.5s;
  animation-delay: 0.5s;
}
.iw-ring3 {
  inset: 16%;
  border-color: rgba(38, 181, 192, 0.22);
  animation-duration: 3.5s;
  animation-delay: 1s;
  border-style: dashed;
}
@keyframes iwpulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}
.island-land {
  position: absolute;
  inset: 28%;
  background: linear-gradient(
    135deg,
    rgba(61, 122, 92, 0.38),
    rgba(201, 150, 42, 0.22)
  );
  border-radius: 45% 55% 50% 50%/55% 45% 55% 45%;
  border: 1px solid rgba(201, 150, 42, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iland 6s ease-in-out infinite alternate;
}
@keyframes iland {
  from {
    box-shadow:
      0 0 20px rgba(38, 181, 192, 0.08),
      0 0 40px rgba(201, 150, 42, 0.04);
  }
  to {
    box-shadow:
      0 0 40px rgba(38, 181, 192, 0.18),
      0 0 80px rgba(201, 150, 42, 0.09);
  }
}
.island-core {
  width: 10px;
  height: 10px;
  background: var(--gold2);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(228, 184, 74, 0.75);
  animation: icore 2.5s ease-in-out infinite;
}
@keyframes icore {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(228, 184, 74, 0.55);
  }
  50% {
    box-shadow:
      0 0 30px rgba(228, 184, 74, 1),
      0 0 60px rgba(228, 184, 74, 0.28);
  }
}
.idot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--coral);
  animation: idotpulse 2.5s ease-in-out infinite;
}
.idot:nth-child(1) {
  top: 22%;
  left: 42%;
  animation-delay: 0s;
  background: var(--ocean);
  box-shadow: 0 0 10px var(--ocean);
}
.idot:nth-child(2) {
  top: 62%;
  left: 26%;
  animation-delay: 0.8s;
}
.idot:nth-child(3) {
  top: 30%;
  left: 68%;
  animation-delay: 1.5s;
  background: var(--gold2);
  box-shadow: 0 0 10px var(--gold2);
}
@keyframes idotpulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.7);
    opacity: 1;
  }
}

/* ── LIFESTYLE GRID ── */
.ls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.ls-card {
  background: linear-gradient(
    145deg,
    var(--bg3) 0%,
    rgba(21, 37, 48, 0.6) 100%
  );
  border: 1px solid rgba(201, 150, 42, 0.13);
  border-radius: var(--r);
  padding: 1.75rem 1.4rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.22s;
}
.ls-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold2), transparent);
  opacity: 0.35;
  transition: opacity 0.3s;
}
.ls-card:hover {
  border-color: rgba(201, 150, 42, 0.28);
  transform: translateY(-3px);
}
.ls-card:hover::before {
  opacity: 0.85;
}
.ls-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: rgba(232, 115, 74, 0.09);
  border: 1px solid rgba(232, 115, 74, 0.2);
  color: var(--coral);
}
.ls-emoji svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ls-title {
  font-family: var(--fb);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.5rem;
}
.ls-text {
  font-size: 0.81rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}
.ls-tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--fb);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  background: rgba(201, 150, 42, 0.07);
  border: 1px solid rgba(201, 150, 42, 0.18);
  border-radius: 20px;
  color: var(--gold2);
}

/* ── PLATFORM CARDS ── */
.pgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.pcard {
  background: var(--bg3);
  border: 1px solid rgba(38, 181, 192, 0.11);
  border-radius: var(--r);
  padding: 2rem;
  position: relative;
  transition:
    border-color 0.3s,
    transform 0.22s;
  overflow: hidden;
}
.pcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean), var(--gold2));
  opacity: 0;
  transition: opacity 0.3s;
}
.pcard:hover {
  border-color: rgba(38, 181, 192, 0.28);
  transform: translateY(-4px);
}
.pcard:hover::before {
  opacity: 1;
}
.pico {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  background: rgba(38, 181, 192, 0.08);
  border: 1px solid rgba(38, 181, 192, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.pico svg {
  width: 21px;
  height: 21px;
  stroke: var(--ocean);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pname {
  font-family: var(--fb);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 0.5rem;
}
.ptext {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}
.ptag {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--fb);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding: 0.2rem 0.62rem;
  background: rgba(38, 181, 192, 0.07);
  border: 1px solid rgba(38, 181, 192, 0.16);
  border-radius: 20px;
  color: var(--ocean);
}

/* ── PILLARS ── */
.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.fcard {
  background: var(--bg3);
  border: 1px solid rgba(38, 181, 192, 0.1);
  border-radius: var(--r);
  padding: 2rem 1.5rem;
  position: relative;
  transition:
    border-color 0.3s,
    transform 0.22s;
}
.fcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ocean), var(--coral));
  opacity: 0;
  transition: opacity 0.3s;
}
.fcard:hover {
  border-color: rgba(38, 181, 192, 0.28);
  transform: translateY(-4px);
}
.fcard:hover::before {
  opacity: 1;
}
.cn {
  font-family: var(--fh);
  font-size: 2.6rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(38, 181, 192, 0.2);
  line-height: 1;
  margin-bottom: 0.85rem;
}
.ct {
  font-family: var(--fb);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.55rem;
}
.cx {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 300;
}

/* ── FOUNDATION BRIDGE ── */
.bc {
  background: linear-gradient(
    135deg,
    rgba(38, 181, 192, 0.05),
    rgba(232, 115, 74, 0.05)
  );
  border: 1px solid rgba(38, 181, 192, 0.12);
  border-radius: 10px;
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(38, 181, 192, 0.035),
    transparent
  );
  animation: bsweep 5s ease-in-out infinite;
}
@keyframes bsweep {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.ba {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-left: 1rem;
}
.as {
  width: 3px;
  height: 88px;
  background: linear-gradient(180deg, var(--coral), var(--ocean));
  position: relative;
  animation: apulse 2s ease-in-out infinite;
}
.as::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 12px solid var(--ocean);
}
@keyframes apulse {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}
.at {
  font-family: var(--fb);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  writing-mode: vertical-lr;
  margin-top: 0.5rem;
}
.bl {
  font-family: var(--fb);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.55rem;
}
.bt {
  font-family: var(--fh);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  color: var(--sand);
  margin-bottom: 0.85rem;
  line-height: 1.12;
}
.bx {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.88;
  max-width: 560px;
  font-weight: 300;
}

/* ── WARM DIVIDER LINE ── */
.warm-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--ocean) 20%,
    var(--gold2) 50%,
    var(--coral) 80%,
    transparent
  );
  opacity: 0.35;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(38, 181, 192, 0.1);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(12, 26, 32, 0.88);
  backdrop-filter: blur(20px);
}
.fcopy {
  font-family: var(--fb);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.fnav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.fnav a {
  font-family: var(--fb);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  font-weight: 500;
}
.fnav a:hover {
  color: var(--ocean);
}
.fnav a.hi {
  color: var(--coral);
  font-weight: 700;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .island-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .fgrid {
    grid-template-columns: 1fr;
  }
  .ls-grid {
    grid-template-columns: 1fr;
  }
  .pgrid {
    grid-template-columns: 1fr;
  }
  .bc {
    grid-template-columns: 1fr;
  }
  .ba {
    flex-direction: row;
    padding-left: 0;
  }
  .as {
    width: 88px;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--ocean));
  }
  .as::after {
    bottom: auto;
    top: 50%;
    left: auto;
    right: -9px;
    transform: translateY(-50%);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid var(--ocean);
    border-right: none;
  }
  .at {
    writing-mode: horizontal-tb;
    margin-top: 0;
    margin-left: 0.5rem;
  }
  .tb {
    padding: 1rem 1.25rem;
  }
}
@media (max-width: 540px) {
  .hero {
    padding: 4.5rem 1rem 2.5rem;
  }
  .fstrip {
    grid-template-columns: 1fr 1fr;
  }
  .project-notice {
    flex-direction: column;
  }
}
