/* Velora Worldwide Cultural Ltd — static website */
:root {
  --navy-950: #041127;
  --navy-900: #071a3d;
  --navy-800: #0b285a;
  --blue-700: #164dcc;
  --blue-500: #2f75ff;
  --cyan-400: #39ccff;
  --ink: #10213d;
  --muted: #5c6d87;
  --line: #dce5f1;
  --surface: #f6f9fd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 27, 65, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.72;
  word-break: keep-all;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 2000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
}

.skip-link:focus {
  top: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(4, 17, 39, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  font-size: 17px;
  letter-spacing: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(47,117,255,.4), rgba(57,204,255,.15));
}

.brand-name {
  font-size: 16px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  color: rgba(255,255,255,.84);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan-400);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-button {
  min-width: 76px;
  padding: 9px 14px;
  color: var(--white);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font: inherit;
  font-size: 13px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  cursor: pointer;
  border: 0;
  background: transparent;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 28%, rgba(47,117,255,.34), transparent 23%),
    radial-gradient(circle at 12% 86%, rgba(57,204,255,.16), transparent 28%),
    linear-gradient(135deg, #031027 0%, #061a3c 48%, #0c2e67 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 850px;
  padding: 120px 0 70px;
  margin: 0 auto;
}

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

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
}

.eyebrow {
  color: var(--cyan-400);
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.hero-text {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.73);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  min-height: 50px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 750;
  border-radius: 8px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), #2160eb);
  box-shadow: 0 14px 34px rgba(47,117,255,.34);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.06);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 38px;
  color: rgba(255,255,255,.69);
  font-size: 13px;
}

.hero-points span::before {
  margin-right: 8px;
  color: var(--cyan-400);
  content: "•";
}

.hero-logo-card {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 480px;
  padding: 46px 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  box-shadow: 0 35px 90px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}

.hero-logo-card::before,
.hero-logo-card::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.hero-logo-card::before {
  width: 340px;
  height: 340px;
  border: 1px solid rgba(57,204,255,.16);
}

.hero-logo-card::after {
  width: 270px;
  height: 270px;
  border: 1px dashed rgba(255,255,255,.10);
  animation: spin 26s linear infinite;
}


.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-one {
  top: 20%;
  right: -160px;
  width: 420px;
  height: 420px;
  background: rgba(47,117,255,.16);
}

.hero-glow-two {
  bottom: -240px;
  left: -150px;
  width: 520px;
  height: 520px;
  background: rgba(57,204,255,.08);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.section {
  width: min(1180px, calc(100% - 40px));
  padding: 110px 0;
  margin: 0 auto;
  scroll-margin-top: 70px;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto 50px;
  text-align: center;
}

.section h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.22;
  letter-spacing: -.035em;
}

.section-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 70px;
  align-items: start;
  margin-top: 55px;
}

.about-copy {
  color: #354963;
  font-size: 18px;
}

.about-copy p {
  margin: 0 0 22px;
}

.fact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(5,31,72,.08);
}

.fact-card div {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.fact-card div:last-child {
  border-bottom: 0;
}

.fact-card span,
.contact-details span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fact-card strong {
  display: block;
  color: var(--navy-900);
  font-size: 15px;
}

.services-section {
  position: relative;
}

.services-section::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: calc((100vw - 100%) / -2);
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  content: "";
  background: var(--surface);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 340px;
  padding: 30px 26px;
  overflow: hidden;
  border: 1px solid #e1e8f2;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 13px 36px rgba(10,36,78,.055);
  transition: transform .22s ease, box-shadow .22s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 48px rgba(10,36,78,.11);
}

.service-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #d6e0ee;
  font-size: 13px;
  font-weight: 800;
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 38px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  border: 1px solid #cbd9eb;
  border-radius: 14px;
  background: linear-gradient(145deg, #f5f9ff, #e9f2ff);
}

.service-card h3 {
  margin: 0 0 15px;
  color: var(--navy-900);
  font-size: 20px;
  line-height: 1.35;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.project-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 590px;
  overflow: hidden;
  color: var(--white);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 16%, rgba(57,204,255,.18), transparent 25%),
    linear-gradient(135deg, #061631, #0a2d66);
  box-shadow: var(--shadow);
}

.project-copy {
  z-index: 2;
  padding: 76px 70px;
}

.section-label.light {
  color: var(--cyan-400);
}

.project-copy h2 {
  color: var(--white);
  font-size: clamp(42px, 5vw, 64px);
}

.project-copy > p:not(.section-label) {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.72);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.project-tags span {
  padding: 8px 12px;
  color: rgba(255,255,255,.85);
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}

.project-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.project-v {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255,255,255,.92);
  font-size: 250px;
  font-weight: 850;
  line-height: 1;
  text-shadow: 0 25px 70px rgba(0,0,0,.25);
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(57,204,255,.42);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-17deg);
}

.orbit-one {
  width: 430px;
  height: 150px;
}

.orbit-two {
  width: 320px;
  height: 320px;
  border-color: rgba(255,255,255,.12);
}

.project-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 22px rgba(57,204,255,.8);
}

.dot-one { top: 25%; right: 19%; }
.dot-two { right: 12%; bottom: 23%; width: 7px; height: 7px; }
.dot-three { bottom: 15%; left: 23%; width: 9px; height: 9px; }

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 54px;
}

.flow-item {
  min-height: 238px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.flow-item strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--white);
  font-size: 13px;
  border-radius: 50%;
  background: var(--blue-700);
}

.flow-item span {
  display: block;
  color: var(--navy-900);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.flow-item p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.flow-arrow {
  color: #9ab0ca;
  font-size: 24px;
}

.compliance-section {
  position: relative;
}

.compliance-section::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: calc((100vw - 100%) / -2);
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  content: "";
  background: var(--surface);
}

.compliance-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.compliance-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(6,29,67,.08);
}

.check-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: start;
  padding: 23px 25px;
  border-bottom: 1px solid var(--line);
}

.check-item:last-child {
  border-bottom: 0;
}

.check-item span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--blue-700);
  font-weight: 900;
  border-radius: 50%;
  background: #eaf2ff;
}

.check-item p {
  margin: 2px 0 0;
  color: #41546e;
  font-size: 14px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  padding: 68px 70px;
  color: var(--white);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 22%, rgba(57,204,255,.19), transparent 25%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.contact-panel h2 {
  color: var(--white);
}

.contact-panel > div:first-child > p:last-child {
  max-width: 600px;
  color: rgba(255,255,255,.68);
}

.contact-details {
  display: grid;
  align-content: center;
  gap: 19px;
}

.contact-details div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.contact-details span {
  color: rgba(255,255,255,.5);
}

.contact-details strong {
  font-size: 15px;
}

.contact-details a {
  color: var(--cyan-400);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  padding: 38px max(20px, calc((100% - 1180px) / 2));
  color: #8795a9;
  background: #020b1a;
  font-size: 12px;
}

.site-footer > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.site-footer strong {
  color: var(--white);
  letter-spacing: .14em;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.legal-page {
  min-height: 100vh;
  padding: 130px 20px 80px;
  background: var(--surface);
}

.legal-card {
  width: min(880px, 100%);
  padding: 55px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(6,31,71,.08);
}

.legal-card h1 {
  margin-top: 0;
  color: var(--navy-900);
}

.legal-card h2 {
  margin-top: 35px;
  color: var(--navy-900);
  font-size: 20px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--blue-700);
  font-weight: 750;
}

@media (max-width: 1040px) {
  .hero-inner,
  .project-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 160px 0 90px;
  }

  .hero-logo-card {
    min-height: 390px;
  }

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

  .project-visual {
    min-height: 330px;
  }

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

  .flow-arrow {
    display: none;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: min(360px, 88vw);
    height: 100vh;
    padding: 110px 36px 40px;
    background: var(--navy-950);
    box-shadow: -20px 0 60px rgba(0,0,0,.25);
    transform: translateX(105%);
    transition: transform .24s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    width: 100%;
    padding: 10px 0;
    font-size: 17px;
  }

  .menu-button {
    position: relative;
    z-index: 3;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section {
    padding: 85px 0;
  }

  .project-copy,
  .contact-panel {
    padding: 50px 36px;
  }
}

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

  .brand-name {
    font-size: 14px;
  }

  .hero-inner {
    gap: 48px;
    padding-top: 135px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-logo-card {
    min-height: 340px;
    padding: 24px;
  }

  .hero-logo-card::before {
    width: 245px;
    height: 245px;
  }

  .hero-logo-card::after {
    width: 195px;
    height: 195px;
  }

  .logo-badge {
    width: 100%;
    padding: 18px 16px;
  }

  .logo-badge img {
    width: min(100%, 220px);
  }

  .brand-note strong {
    font-size: 16px;
  }

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

  .service-card {
    min-height: 285px;
  }

  .project-copy {
    padding: 45px 28px;
  }

  .project-v {
    font-size: 190px;
  }

  .contact-panel {
    gap: 45px;
    padding: 45px 28px;
  }

  .legal-card {
    padding: 35px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


.media-section {
  position: relative;
}

.media-section::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: calc((100vw - 100%) / -2);
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  content: "";
  background:
    radial-gradient(circle at 50% 0%, rgba(47,117,255,.08), transparent 34%),
    var(--surface);
}

.video-card {
  overflow: hidden;
  max-width: 1000px;
  margin: 52px auto 0;
  border: 1px solid #d7e2f0;
  border-radius: 22px;
  background: var(--navy-950);
  box-shadow: var(--shadow);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
}

.video-caption {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(57,204,255,.15), transparent 35%),
    linear-gradient(135deg, #061631, #0a2d66);
}

.video-caption > div {
  min-width: 220px;
}

.video-caption span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan-400);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.video-caption strong {
  font-size: 20px;
}

.video-caption p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  text-align: right;
}

@media (max-width: 600px) {
  .video-caption {
    display: block;
    padding: 22px;
  }

  .video-caption p {
    margin-top: 12px;
    text-align: left;
  }
}


.logo-badge {
  display: grid;
  width: min(100%, 360px);
  padding: 26px 24px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow:
    0 18px 40px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.8);
}

.logo-badge img {
  width: min(100%, 280px);
  filter: none;
}

.brand-note {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin-top: 24px;
  text-align: center;
}

.brand-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.brand-note p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

