/* =========================================================
   verify.intuitionorbit.de
   /assets/css/style.css
   Transparent Displays from the Future
   ========================================================= */

:root{
  --bg-1:#07111f;
  --bg-2:#0a1930;
  --bg-3:#132746;
  --panel:rgba(255,255,255,.12);
  --panel-strong:rgba(255,255,255,.18);
  --panel-soft:rgba(255,255,255,.08);
  --line:rgba(255,255,255,.16);
  --line-strong:rgba(255,255,255,.28);
  --text:#eef6ff;
  --muted:#b9c8da;
  --soft:#8da3bf;
  --cyan:#7ef3ff;
  --cyan-2:#4fd8ff;
  --blue:#7aa7ff;
  --gold:#ffd76a;
  --gold-2:#ffbf3a;
  --gold-glow:rgba(255,215,106,.40);
  --green:#76ffb7;
  --shadow-1:0 20px 60px rgba(0,0,0,.28);
  --shadow-2:0 10px 24px rgba(0,0,0,.22);
  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;
  --radius-sm:14px;
  --shell:1280px;
  --header-h:88px;
  --blur:20px;
  --font-ui:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  --font-display:Orbitron,Inter,system-ui,sans-serif;
}

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

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  min-width:320px;
  color:var(--text);
  font-family:var(--font-ui);
  background:
    radial-gradient(circle at 15% 20%, rgba(126,243,255,.18), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(255,215,106,.12), transparent 24%),
    radial-gradient(circle at 50% 75%, rgba(122,167,255,.12), transparent 34%),
    linear-gradient(145deg, var(--bg-1) 0%, var(--bg-2) 46%, var(--bg-3) 100%);
  background-attachment:fixed;
  line-height:1.55;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.028), rgba(255,255,255,0) 22%),
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,.028) 0,
      rgba(255,255,255,.028) 1px,
      transparent 1px,
      transparent 5px
    );
  opacity:.22;
  mix-blend-mode:screen;
  z-index:0;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea,
select{
  font:inherit;
}

button{
  border:0;
}

main{
  position:relative;
  z-index:1;
}

.shell{
  width:min(calc(100% - 32px), var(--shell));
  margin-inline:auto;
}

.verify-home{
  padding:
    clamp(22px, 4vw, 36px)
    0
    clamp(72px, 8vw, 120px);
}

/* =========================================================
   PANELS / GLASS
   ========================================================= */

.glass-panel,
.glass-card,
.glass-tile,
.flow-step{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  box-shadow:var(--shadow-1);
  backdrop-filter:blur(var(--blur)) saturate(150%);
  -webkit-backdrop-filter:blur(var(--blur)) saturate(150%);
}

.glass-panel::before,
.glass-card::before,
.glass-tile::before,
.flow-step::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(315deg, rgba(126,243,255,.08), transparent 38%);
  opacity:.8;
}

.glass-panel{
  border-radius:var(--radius-xl);
}

.glass-card,
.glass-tile,
.flow-step{
  border-radius:var(--radius-lg);
}

/* =========================================================
   TYPO
   ========================================================= */

h1,h2,h3,h4{
  margin:0 0 .6em;
  line-height:1.08;
  letter-spacing:-.02em;
}

h1,h2{
  font-family:var(--font-display);
}

h1{
  font-size:clamp(2.2rem, 5vw, 4.8rem);
}

h2{
  font-size:clamp(1.55rem, 3vw, 2.5rem);
}

h3{
  font-size:clamp(1.06rem, 1.6vw, 1.34rem);
}

p{
  margin:0 0 1rem;
  color:var(--muted);
}

.section-head{
  position:relative;
  z-index:1;
  margin-bottom:28px;
}

.section-head.centered{
  text-align:center;
  max-width:900px;
  margin-inline:auto;
  margin-bottom:34px;
}

.section-head p.centered,
.section-head.centered p{
  max-width:760px;
  margin-inline:auto;
}

.section-kicker,
.eyebrow-pill,
.live-pill,
.project-label,
.project-status,
.step-no{
  letter-spacing:.12em;
  text-transform:uppercase;
}

.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  color:var(--cyan);
  font-size:.78rem;
  font-weight:700;
}

.section-kicker::before{
  content:"";
  width:28px;
  height:1px;
  background:linear-gradient(90deg, var(--cyan), transparent);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--line-strong);
  font-weight:700;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    color .2s ease;
  will-change:transform;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  color:#07111f;
  background:
    linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color:rgba(255,230,160,.75);
  box-shadow:
    0 10px 30px rgba(255,191,58,.25),
    inset 0 1px 0 rgba(255,255,255,.5);
}

.btn-primary:hover{
  box-shadow:
    0 16px 40px rgba(255,191,58,.32),
    inset 0 1px 0 rgba(255,255,255,.55);
}

.btn-secondary,
.btn-inline{
  color:var(--text);
  background:rgba(255,255,255,.08);
  border-color:var(--line);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14);
}

.btn-secondary:hover,
.btn-inline:hover{
  border-color:rgba(126,243,255,.35);
  background:rgba(255,255,255,.12);
}

.btn-inline{
  min-height:42px;
  padding:10px 16px;
  font-size:.95rem;
}

/* =========================================================
   HERO
   ========================================================= */

.verify-hero{
  padding-top:clamp(10px, 3vw, 24px);
}

.hero-panel{
  padding:clamp(22px, 4vw, 42px);
  min-height:min(82vh, 860px);
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(340px, .92fr);
  gap:clamp(28px, 4vw, 52px);
  align-items:center;
  min-height:min(72vh, 760px);
}

.hero-copy{
  max-width:780px;
}

.eyebrow-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  margin-bottom:22px;
}

.eyebrow-pill,
.live-pill{
  min-height:42px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14);
  font-size:.76rem;
  font-weight:700;
  color:var(--text);
}

.live-pill{
  gap:10px;
  display:inline-flex;
  align-items:center;
}

.live-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--green);
  box-shadow:
    0 0 0 0 rgba(118,255,183,.55),
    0 0 18px rgba(118,255,183,.8);
  animation:verifyPulse 2s infinite;
}

.hero-title{
  max-width:12ch;
  margin-bottom:18px;
  text-wrap:balance;
}

.hero-text{
  max-width:62ch;
  font-size:clamp(1.02rem, 1.35vw, 1.16rem);
  color:var(--muted);
  margin-bottom:28px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:26px;
}

.signal-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  padding:0;
  margin:0;
  list-style:none;
}

.signal-list li{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(126,243,255,.18);
  background:rgba(126,243,255,.08);
  color:#dffbff;
  font-size:.92rem;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14);
}

/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual{
  position:relative;
  min-height:560px;
  display:grid;
  place-items:center;
}

.verify-badge-orb{
  position:relative;
  width:min(540px, 100%);
  aspect-ratio:1 / 1;
  display:grid;
  place-items:center;
  isolation:isolate;
}

.verify-badge-orb::before{
  content:"";
  position:absolute;
  inset:12%;
  border-radius:50%;
  background:
    radial-gradient(circle, rgba(126,243,255,.16) 0%, rgba(126,243,255,.06) 35%, transparent 70%);
  filter:blur(10px);
  z-index:0;
}

.verify-badge-core{
  position:relative;
  z-index:3;
  width:min(60%, 320px);
  aspect-ratio:1 / 1;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.24), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 24px 60px rgba(0,0,0,.26),
    0 0 42px rgba(255,215,106,.12);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.verify-badge-image{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:
    drop-shadow(0 10px 30px rgba(255,191,58,.25))
    drop-shadow(0 0 22px rgba(255,215,106,.18));
  animation:floatSeal 5.4s ease-in-out infinite;
}

.orbital-ring{
  position:absolute;
  inset:0;
  margin:auto;
  border-radius:50%;
  border:1px solid rgba(126,243,255,.18);
  box-shadow:
    inset 0 0 22px rgba(126,243,255,.05),
    0 0 12px rgba(126,243,255,.06);
}

.ring-a{
  width:72%;
  aspect-ratio:1 / 1;
  animation:spinSlow 18s linear infinite;
}

.ring-b{
  width:88%;
  aspect-ratio:1 / 1;
  border-style:dashed;
  border-color:rgba(255,255,255,.12);
  animation:spinReverse 24s linear infinite;
}

.ring-c{
  width:100%;
  aspect-ratio:1 / 1;
  opacity:.5;
  animation:spinSlow 32s linear infinite;
}

.floating-chip{
  position:absolute;
  z-index:4;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.10);
  color:var(--text);
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.16em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 12px 28px rgba(0,0,0,.18);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

.chip-a{
  top:16%;
  right:8%;
  animation:floatChipA 6.8s ease-in-out infinite;
}

.chip-b{
  bottom:18%;
  left:6%;
  animation:floatChipB 7.6s ease-in-out infinite;
}

.chip-c{
  top:48%;
  left:-2%;
  animation:floatChipC 6.4s ease-in-out infinite;
}

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

.verify-intro{
  margin-top:30px;
}

.intro-panel{
  padding:clamp(22px, 4vw, 36px);
}

.info-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.glass-tile{
  padding:24px 20px;
}

.glass-tile h3{
  margin-bottom:12px;
  color:#f7fbff;
}

.glass-tile p{
  margin:0;
}

/* =========================================================
   PROJECTS
   ========================================================= */

.verify-projects{
  margin-top:62px;
}

.project-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}

.project-card{
  padding:22px;
  min-height:100%;
}

.project-top{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
}

.project-seal{
  flex:0 0 76px;
  width:76px;
  height:76px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.18), transparent 38%),
    rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 10px 22px rgba(0,0,0,.18);
}

.project-seal img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 6px 12px rgba(255,191,58,.18));
}

.project-meta{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.project-label,
.project-status{
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-height:28px;
  padding:6px 10px;
  border-radius:999px;
  font-size:.68rem;
  font-weight:800;
}

.project-label{
  background:rgba(126,243,255,.08);
  border:1px solid rgba(126,243,255,.18);
  color:var(--cyan);
}

.project-status{
  background:rgba(118,255,183,.09);
  border:1px solid rgba(118,255,183,.18);
  color:#baffdb;
}

.project-card h3{
  margin-bottom:8px;
  color:#ffffff;
}

.project-type{
  color:var(--cyan);
  font-weight:700;
  margin-bottom:10px;
}

.project-note{
  min-height:52px;
}

.project-actions{
  margin-top:20px;
}

/* =========================================================
   FLOW
   ========================================================= */

.verify-flow{
  margin-top:64px;
}

.flow-panel{
  padding:clamp(22px, 4vw, 38px);
}

.flow-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.flow-step{
  padding:22px 20px 20px;
}

.step-no{
  display:inline-flex;
  min-width:54px;
  min-height:30px;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
  border-radius:999px;
  background:rgba(255,215,106,.10);
  border:1px solid rgba(255,215,106,.18);
  color:var(--gold);
  font-size:.75rem;
  font-weight:800;
}

.flow-step h3{
  margin-bottom:10px;
}

.flow-step p{
  margin:0;
}

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

.verify-cta{
  margin-top:62px;
}

.cta-panel{
  padding:clamp(22px, 4vw, 36px);
  display:flex;
  gap:24px;
  align-items:center;
  justify-content:space-between;
}

.cta-copy{
  max-width:820px;
}

.cta-copy h2{
  margin-bottom:12px;
}

.cta-copy p{
  margin:0;
}

/* =========================================================
   HEADER / FOOTER / NAV
   ========================================================= */

.site-header{
  position:sticky;
  top:0;
  z-index:80;
  padding:14px 0;
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  background:linear-gradient(180deg, rgba(6,15,28,.62), rgba(6,15,28,.24));
  border-bottom:1px solid rgba(255,255,255,.08);
}

.site-header .header-inner{
  width:min(calc(100% - 32px), var(--shell));
  margin-inline:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:60px;
}

.site-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  font-family:var(--font-display);
  font-weight:800;
  letter-spacing:.06em;
}

.site-brand-text{
  white-space:nowrap;
}

.site-brand-mark{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  overflow:hidden;
  color:var(--cyan);
  font-size:.95rem;
  font-weight:900;
  flex:0 0 42px;
}

.site-brand-mark img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.site-nav a{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
  transition:.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active{
  color:var(--text);
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.10);
}

.nav-toggle{
  position:fixed;
  top:18px;
  right:18px;
  width:44px;
  height:44px;
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.25), transparent 40%),
    linear-gradient(145deg, rgba(255,215,106,.18), rgba(255,191,58,.08));
  border:1px solid rgba(255,215,106,.35);
  border-radius:50%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -2px 6px rgba(120,80,0,.25),
    0 12px 28px rgba(0,0,0,.25),
    0 0 18px rgba(255,215,106,.18);
  backdrop-filter:blur(12px) saturate(160%);
  -webkit-backdrop-filter:blur(12px) saturate(160%);
  z-index:120;
  cursor:pointer;
}

.nav-toggle:hover{
  border-color:rgba(255,215,106,.6);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -2px 8px rgba(120,80,0,.3),
    0 16px 34px rgba(0,0,0,.3),
    0 0 28px rgba(255,215,106,.28);
}

.nav-toggle span{
  display:block;
  height:2px;
  width:20px;
  margin:0 auto;
  background:linear-gradient(90deg, #fff6cc, var(--gold), var(--gold-2));
  border-radius:999px;
  box-shadow:0 0 6px rgba(255,215,106,.35);
  transition:.3s;
}

.nav-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.56);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
  z-index:98;
}

.nav-mobile{
  position:fixed;
  top:0;
  right:-100%;
  width:min(320px, 88vw);
  height:100vh;
  padding:92px 18px 22px;
  background:
    linear-gradient(180deg, rgba(7,17,31,.96), rgba(10,25,48,.96) 52%, rgba(5,10,18,.98));
  border-left:1px solid rgba(255,255,255,.10);
  box-shadow:-16px 0 40px rgba(0,0,0,.35);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  display:flex;
  flex-direction:column;
  gap:18px;
  z-index:110;
  transition:right .32s ease;
}

.nav-mobile-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.nav-mobile a{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-size:1rem;
  font-weight:600;
  letter-spacing:.02em;
}

.nav-mobile a:hover,
.nav-mobile a.is-active{
  border-color:rgba(255,215,106,.20);
  background:rgba(255,255,255,.09);
  color:#fff;
}

body.nav-open .nav-mobile{
  right:0;
}

body.nav-open .nav-backdrop{
  opacity:1;
  pointer-events:auto;
}

body.nav-open .nav-toggle span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2){
  opacity:0;
}

body.nav-open .nav-toggle span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

.site-footer{
  position:relative;
  z-index:1;
  padding:28px 0 42px;
  color:var(--soft);
}

.site-footer .footer-inner{
  width:min(calc(100% - 32px), var(--shell));
  margin-inline:auto;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

/* =========================================================
   MOTION
   ========================================================= */

@keyframes verifyPulse{
  0%{
    box-shadow:
      0 0 0 0 rgba(118,255,183,.5),
      0 0 18px rgba(118,255,183,.72);
  }
  70%{
    box-shadow:
      0 0 0 12px rgba(118,255,183,0),
      0 0 20px rgba(118,255,183,.9);
  }
  100%{
    box-shadow:
      0 0 0 0 rgba(118,255,183,0),
      0 0 18px rgba(118,255,183,.72);
  }
}

@keyframes floatSeal{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

@keyframes spinSlow{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

@keyframes spinReverse{
  from{ transform:rotate(360deg); }
  to{ transform:rotate(0deg); }
}

@keyframes floatChipA{
  0%,100%{ transform:translate3d(0,0,0); }
  50%{ transform:translate3d(0,-10px,0); }
}

@keyframes floatChipB{
  0%,100%{ transform:translate3d(0,0,0); }
  50%{ transform:translate3d(6px,-8px,0); }
}

@keyframes floatChipC{
  0%,100%{ transform:translate3d(0,0,0); }
  50%{ transform:translate3d(-4px,10px,0); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1280px){
  .site-nav{
    display:none !important;
  }

  .nav-toggle{
    display:flex;
  }
}

@media (max-width: 1160px){
  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-copy{
    max-width:none;
  }

  .hero-title{
    max-width:14ch;
  }

  .hero-visual{
    min-height:460px;
  }

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

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

  .cta-panel{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 760px){
  :root{
    --radius-xl:24px;
    --radius-lg:20px;
  }

  .shell{
    width:min(calc(100% - 20px), var(--shell));
  }

  .verify-home{
    padding-bottom:76px;
  }

  .hero-panel,
  .intro-panel,
  .flow-panel,
  .cta-panel{
    padding:18px;
  }

  .hero-grid{
    gap:20px;
    min-height:auto;
  }

  .hero-title{
    max-width:none;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-actions .btn{
    width:100%;
  }

  .hero-visual{
    min-height:320px;
  }

  .verify-badge-orb{
    width:min(100%, 360px);
  }

  .floating-chip{
    font-size:.68rem;
    padding:8px 12px;
    letter-spacing:.12em;
  }

  .chip-c{
    left:2%;
    top:44%;
  }

  .info-grid,
  .project-grid,
  .flow-grid{
    grid-template-columns:1fr;
  }

  .project-top{
    align-items:flex-start;
  }

  .signal-list{
    gap:10px;
  }

  .signal-list li{
    width:100%;
    justify-content:flex-start;
  }

  .site-header .header-inner,
  .site-footer .footer-inner{
    width:min(calc(100% - 20px), var(--shell));
  }

  .site-brand-text{
    font-size:.92rem;
  }

  .nav-toggle{
    top:14px;
    right:14px;
  }
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}

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

.project-panel{
  padding:clamp(22px, 4vw, 40px);
}

.project-page-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(320px, .8fr);
  gap:24px;
  align-items:start;
}

.project-page-main,
.project-page-side{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.project-verify-top{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:10px;
}

.project-page-seal{
  width:110px;
  height:110px;
  border-radius:50%;
  flex:0 0 110px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.18), transparent 38%),
    rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 18px 36px rgba(0,0,0,.18);
}

.project-page-seal img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:
    drop-shadow(0 10px 24px rgba(255,191,58,.22))
    drop-shadow(0 0 20px rgba(255,215,106,.14));
}

.project-verify-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.project-verify-status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 16px;
  border-radius:999px;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  border:1px solid var(--line);
  background:rgba(255,255,255,.08);
}

.project-verify-status.is-verified{
  color:#07111f;
  background:linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color:rgba(255,230,160,.75);
  box-shadow:
    0 10px 30px rgba(255,191,58,.18),
    inset 0 1px 0 rgba(255,255,255,.4);
}

.project-verify-status.is-revoked{
  color:#ffd9d9;
  background:rgba(255,80,80,.12);
  border-color:rgba(255,80,80,.22);
}

.project-page-title{
  margin-bottom:12px;
}

.project-page-summary{
  font-size:1.05rem;
  max-width:64ch;
  margin-bottom:0;
}

.project-page-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.project-page-description,
.project-page-signals{
  padding:22px 20px;
}

.project-page-description h2,
.project-page-signals h2,
.verify-facts h2,
.verify-links h2{
  font-family:var(--font-display);
  font-size:1.15rem;
  margin-bottom:14px;
}

.verify-facts,
.verify-links{
  padding:22px 20px;
}

.facts-list{
  margin:0;
}

.fact-row{
  display:grid;
  grid-template-columns:130px 1fr;
  gap:14px;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.fact-row:last-child{
  border-bottom:none;
}

.fact-row dt{
  color:var(--soft);
  font-weight:700;
}

.fact-row dd{
  margin:0;
  color:var(--text);
  word-break:break-word;
}

.verify-links-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.verify-link-btn{
  width:100%;
  justify-content:flex-start;
}

.project-panel-not-found{
  padding:40px;
}

@media (max-width: 980px){
  .project-page-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .project-panel{
    padding:18px;
  }

  .project-verify-top{
    align-items:flex-start;
    flex-direction:column;
  }

  .project-page-seal{
    width:90px;
    height:90px;
    flex-basis:90px;
  }

  .fact-row{
    grid-template-columns:1fr;
    gap:6px;
  }

  .project-page-actions .btn{
    width:100%;
  }
}

.project-card.is-disabled{
  opacity:.5;
  filter:grayscale(.6);
  pointer-events:none;
}

.project-status.is-maintenance{
  background:rgba(255, 180, 0, .15);
  color:#ffb400;
}

.btn.is-disabled{
  opacity:.6;
  cursor:not-allowed;
}
