:root {
  --bg: #050505;
  --bg-2: #0b0b0b;
  --panel: rgba(255,255,255,.065);
  --panel-strong: rgba(255,255,255,.105);
  --line: rgba(255,255,255,.13);
  --line-strong: rgba(255,255,255,.24);
  --text: #ffffff;
  --muted: #b8b8b8;
  --muted-2: #808080;
  --orange: #ff6a00;
  --orange-2: #ff8a1f;
  --orange-3: #ff3d00;
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow: 0 30px 80px rgba(0,0,0,.42);
  --shadow-soft: 0 18px 46px rgba(0,0,0,.28);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 83% 8%, rgba(255,106,0,.26), transparent 28rem),
    radial-gradient(circle at 8% 28%, rgba(255,106,0,.11), transparent 25rem),
    linear-gradient(180deg, #050505 0%, #090909 45%, #050505 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
::selection { color: #050505; background: var(--orange-2); }

.noise {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.cursor-light {
  position: fixed;
  width: 35rem;
  height: 35rem;
  border-radius: 999px;
  pointer-events: none;
  z-index: -3;
  background: radial-gradient(circle, rgba(255,106,0,.22), rgba(255,106,0,.06) 32%, transparent 68%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .2s ease;
  opacity: .8;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  transform: translateY(-120%);
  background: var(--orange);
  color: #050505;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 120;
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5,5,5,.72);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 10px 34px rgba(0,0,0,.32);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}
.brand img { width: 172px; height: auto; }
.brand-badge {
  color: #050505;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .1em;
  border-radius: 999px;
  padding: 8px 10px;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nav a {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
  padding: 11px 13px;
  border-radius: 999px;
  transition: .2s ease;
}
.nav a:hover, .nav a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.08);
  outline: none;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 2px;
  transition: .25s ease;
}
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 19px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -.01em;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.35), transparent);
  transform: translateX(-110%);
  transition: transform .75s ease, opacity .25s ease;
}
.btn:hover::before { opacity: 1; transform: translateX(110%); }
.btn-primary {
  color: #050505;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 18px 42px rgba(255,106,0,.26);
}
.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.btn-secondary:hover { background: rgba(255,255,255,.12); }
.btn-small { min-height: 40px; padding: 10px 14px; font-size: 14px; }

.hero {
  position: relative;
  padding: 70px 0 54px;
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 54px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .02em;
}
.eyebrow .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255,106,0,.13);
}
.hero h1 {
  margin: 24px 0 22px;
  font-size: clamp(48px, 7.2vw, 106px);
  line-height: .91;
  letter-spacing: -.075em;
  max-width: 820px;
}
.gradient-text {
  color: transparent;
  background: linear-gradient(115deg, #fff, #ffd3b1 42%, var(--orange) 75%, #fff);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmerText 7s ease-in-out infinite;
}
@keyframes shimmerText { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-copy {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.55;
  margin: 0 0 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.meta-pill {
  color: rgba(255,255,255,.78);
  padding: 11px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  font-size: 13px;
  font-weight: 800;
}
.hero-visual {
  position: relative;
  min-height: 550px;
  perspective: 1100px;
}
.orbit-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotateX(6deg) rotateY(-8deg);
}
.orbit-card img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(12,12,12,.76);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 18px;
  animation: floatCard 6s ease-in-out infinite;
}
.floating-card strong { display: block; font-size: 21px; letter-spacing: -.03em; }
.floating-card span { display: block; color: var(--muted); margin-top: 5px; font-weight: 650; }
.floating-card.top { top: 25px; right: -15px; width: 235px; }
.floating-card.bottom { bottom: 36px; left: -22px; width: 285px; animation-delay: -2.2s; }
.floating-card .chip {
  display: inline-flex;
  margin-bottom: 14px;
  color: #050505;
  font-weight: 950;
  background: var(--orange);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  text-transform: uppercase;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  background: linear-gradient(transparent, var(--orange));
  margin: 10px auto 0;
}

.section {
  position: relative;
  padding: 96px 0;
}
.section.compact { padding: 62px 0; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(300px, .55fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 42px;
}
.kicker {
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.section h2, .page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: .98;
  letter-spacing: -.055em;
}
.section-lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.logo-strip {
  border-block: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.035);
  overflow: hidden;
}
.marquee {
  display: flex;
  gap: 46px;
  padding: 22px 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee span {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.marquee b { color: var(--orange); }
@keyframes marquee { to { transform: translateX(-50%); } }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card, .stat-card, .contact-card, .glass-card, .timeline-item, .class-card, .page-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.feature-card::before, .glass-card::before, .contact-card::before, .page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 60%) var(--my, 0%), rgba(255,106,0,.18), transparent 23rem);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.feature-card:hover::before, .glass-card:hover::before, .contact-card:hover::before, .page-card:hover::before { opacity: 1; }
.feature-card {
  padding: 28px;
  min-height: 292px;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.feature-card:hover {
  border-color: rgba(255,106,0,.45);
  transform: translateY(-6px);
}
.icon-orb {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  margin-bottom: 52px;
  color: #050505;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 18px 34px rgba(255,106,0,.22);
  font-weight: 950;
  font-size: 24px;
}
.feature-card h3, .class-card h3, .contact-card h3, .glass-card h3, .page-card h2, .page-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -.035em;
}
.feature-card p, .class-card p, .contact-card p, .glass-card p, .page-card p, .page-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 16px;
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: auto -15% -25% 10%;
  height: 150px;
  background: rgba(255,106,0,.24);
  filter: blur(34px);
  transform: rotate(-10deg);
}
.image-frame img { border-radius: 24px; position: relative; z-index: 1; }
.certificate-img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: top center;
}
.sticky-note {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  width: min(280px, calc(100% - 48px));
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}
.sticky-note strong { display: block; font-size: 18px; }
.sticky-note span { display: block; color: var(--muted); margin-top: 6px; line-height: 1.5; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  padding: 24px;
  min-height: 164px;
}
.stat-value {
  display: block;
  color: #fff;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 950;
  letter-spacing: -.05em;
}
.stat-label {
  display: block;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.45;
  font-weight: 700;
}
.stat-card:nth-child(2n) .stat-value { color: var(--orange); }

.trademark-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  gap: 26px;
  align-items: stretch;
}
.glass-card { padding: 30px; }
.mark-card {
  min-height: 410px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,106,0,.28), transparent 17rem),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
}
.mark-card::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  transform: rotate(-12deg);
}
.mark-card img { width: min(560px, 90%); position: relative; z-index: 1; }
.class-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.class-card { padding: 22px; }
.class-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  margin-bottom: 16px;
  color: #050505;
  background: var(--orange);
  font-weight: 950;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.timeline-item {
  min-height: 255px;
  padding: 26px;
}
.timeline-item::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 34px;
  color: #050505;
  background: var(--orange);
  font-weight: 950;
}
.timeline-item h3 { margin: 0 0 12px; font-size: 23px; letter-spacing: -.03em; }
.timeline-item p { margin: 0; color: var(--muted); line-height: 1.62; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  align-items: stretch;
}
.gallery-grid .image-frame:first-child { min-height: 470px; }
.gallery-stack { display: grid; gap: 20px; }
.gallery-stack .image-frame { min-height: 225px; }

.contact-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 42px;
  padding: clamp(32px, 6vw, 68px);
  background:
    radial-gradient(circle at 84% 28%, rgba(255,106,0,.24), transparent 25rem),
    linear-gradient(135deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}
.contact-panel h2 { max-width: 760px; }
.contact-panel p { max-width: 710px; color: var(--muted); line-height: 1.65; font-size: 18px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.contact-card { padding: 24px; }
.contact-card a { color: #fff; font-weight: 900; word-break: break-word; }
.copy-status { color: var(--orange); margin-top: 10px; font-weight: 850; min-height: 22px; }

.site-footer {
  padding: 44px 0 34px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: #050505;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.footer-brand img { width: 150px; }
.footer-brand p { color: var(--muted-2); max-width: 650px; line-height: 1.6; margin: 18px 0 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}
.footer-links a { color: rgba(255,255,255,.72); font-weight: 800; }
.footer-links a:hover { color: var(--orange); }

.page-hero {
  padding: 84px 0 42px;
}
.page-hero p {
  color: var(--muted);
  max-width: 780px;
  font-size: 19px;
  line-height: 1.65;
}
.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding-bottom: 80px;
}
.page-card { padding: 30px; margin-bottom: 18px; }
.page-card ul, .page-card ol { padding-left: 22px; margin: 14px 0 0; }
.side-box {
  position: sticky;
  top: 102px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.055);
  padding: 24px;
}
.side-box h3 { margin: 0 0 12px; }
.side-box a { color: var(--orange); font-weight: 900; word-break: break-word; }
.side-box p { color: var(--muted); line-height: 1.55; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  margin-top: 14px;
}
.legal-table th, .legal-table td {
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 15px;
  vertical-align: top;
}
.legal-table th { color: #fff; background: rgba(255,255,255,.06); width: 220px; }
.legal-table td { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; } .delay-2 { transition-delay: .16s; } .delay-3 { transition-delay: .24s; }

@media (max-width: 1040px) {
  .hero-grid, .split, .trademark-block, .gallery-grid, .page-layout { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; }
  .section-heading { grid-template-columns: 1fr; }
  .card-grid, .stats-grid, .timeline, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .side-box { position: static; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 26px;
    background: rgba(5,5,5,.92);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }
  .menu-open .nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px; }
  .menu-toggle { display: block; }
  .nav-actions .btn { display: none; }
  .brand img { width: 145px; }
  .brand-badge { display: none; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero { padding-top: 38px; min-height: auto; }
  .hero h1 { letter-spacing: -.065em; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 390px; }
  .floating-card.top { right: 8px; top: -14px; width: 205px; }
  .floating-card.bottom { left: 6px; bottom: 10px; width: 230px; }
  .scroll-cue { display: none; }
  .section { padding: 68px 0; }
  .card-grid, .stats-grid, .timeline, .contact-grid, .class-grid { grid-template-columns: 1fr; }
  .feature-card, .stat-card, .glass-card, .contact-card, .page-card { border-radius: 22px; }
  .mark-card { min-height: 270px; }
  .contact-panel { border-radius: 28px; }
  .legal-table th, .legal-table td { display: block; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .cursor-light { display: none; }
}
