:root {
  --ink: #101820;
  --ink-soft: #21313f;
  --teal: #0f6f78;
  --teal-soft: #e3f5f6;
  --orange: #f58220;
  --sky: #19a9e5;
  --cream: #fffaf3;
  --paper: #ffffff;
  --mist: #f4f7f8;
  --line: rgba(16, 24, 32, 0.12);
  --shadow: 0 20px 60px rgba(16, 24, 32, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, "Noto Sans SC", sans-serif;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: grid;
  gap: 1px;
  min-width: 210px;
  order: 1;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.brand span {
  color: #5d6d79;
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 9px 12px;
  font: inherit;
  font-weight: 700;
  order: 4;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  order: 2;
}

.nav-links a {
  border-radius: var(--radius);
  color: #354654;
  font-size: 0.9rem;
  font-weight: 650;
  padding: 9px 10px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--teal-soft);
  color: var(--teal);
}

.nav-links .nav-cta {
  background: var(--ink);
  color: var(--paper);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  background: var(--teal);
  color: var(--paper);
}

.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;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.language-select {
  appearance: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #354654;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  min-height: 37px;
  padding: 8px 9px;
}

.language-select:hover,
.language-select:focus {
  border-color: rgba(15, 111, 120, 0.34);
  color: var(--teal);
  outline: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.97) 0%, rgba(16, 24, 32, 0.88) 36%, rgba(16, 24, 32, 0.38) 72%, rgba(16, 24, 32, 0.22) 100%),
    var(--hero-image, none);
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  content: "";
  background: linear-gradient(180deg, rgba(16, 24, 32, 0), rgba(16, 24, 32, 0.86));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 72px 0 130px;
}

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

.eyebrow {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #b9f5ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  padding: 7px 11px;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.35rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
  margin: 0 0 24px;
}

.hero .lead {
  color: #eef8fb;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 640px;
}

.lang-line {
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.lang-line span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.button.primary {
  background: var(--orange);
  color: #17120d;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--paper);
}

.button.dark {
  background: var(--ink);
  color: var(--paper);
}

.button.light {
  background: var(--paper);
  color: var(--ink);
}

.next-strip {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18px;
  width: min(calc(100% - 32px), var(--max));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.next-strip span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 750;
  padding: 14px 16px;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--mist);
}

.section.dark {
  background: var(--ink);
  color: var(--paper);
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dark .kicker {
  color: #78edf4;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.25;
  margin: 0 0 12px;
}

.muted {
  color: #5e6c76;
}

.dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.card strong {
  color: var(--ink);
}

.dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.dark .card strong {
  color: var(--paper);
}

.service-card {
  min-height: 100%;
}

.tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  margin-bottom: 18px;
  padding: 6px 9px;
}

.tag.orange {
  background: #fff0df;
  color: #a94e00;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.statement {
  border-left: 4px solid var(--orange);
  color: var(--ink-soft);
  font-size: 1.14rem;
  margin: 26px 0 0;
  padding-left: 20px;
}

.language-panel {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.language-panel ul,
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.language-panel li,
.check-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
}

.language-panel li:last-child,
.check-list li:last-child {
  border-bottom: 0;
}

.media-band {
  background: linear-gradient(135deg, var(--teal), #073f47 58%, #121821);
  color: var(--paper);
}

.media-band .kicker {
  color: #aaf7ff;
}

.media-band .muted {
  color: rgba(255, 255, 255, 0.78);
}

.okedrama-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.okedrama-lockup img {
  width: 86px;
  height: 86px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.okedrama-lockup .eyebrow {
  margin-bottom: 0;
}

.feature-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 84px 0 74px;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
  max-width: 780px;
}

.breadcrumb {
  color: #8fe9ef;
  display: block;
  font-weight: 800;
  margin-bottom: 16px;
}

.legal {
  max-width: 920px;
}

.legal h2 {
  font-size: 1.7rem;
  margin-top: 36px;
}

.legal h3 {
  margin-top: 24px;
}

.legal ul,
.content-list {
  margin: 0 0 20px;
  padding-left: 20px;
}

.contact-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.contact-item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.contact-item:first-child {
  padding-top: 0;
}

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

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #344450;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.notice {
  border-left: 4px solid var(--teal);
  background: var(--teal-soft);
  border-radius: var(--radius);
  padding: 18px;
}

.blog-card time {
  color: var(--teal);
  display: block;
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 12px;
}

.footer {
  background: #0b1117;
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer strong {
  color: var(--paper);
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.subfooter {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 22px;
}

@media (max-width: 940px) {
  .nav-wrap {
    align-items: flex-start;
    min-height: auto;
    padding: 16px 0;
  }

  .brand {
    min-width: 0;
    max-width: 210px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    width: 100%;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(16, 24, 32, 0.98) 0%, rgba(16, 24, 32, 0.86) 58%, rgba(16, 24, 32, 0.6) 100%),
      var(--hero-image, none);
    background-position: center right;
  }

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

  .split,
  .grid.two,
  .grid.three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .language-switcher {
    width: 100%;
  }

  .language-select {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .nav-wrap {
    gap: 10px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand span {
    font-size: 0.74rem;
  }

  .hero-inner {
    padding-top: 54px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  .section {
    padding: 62px 0;
  }

  .next-strip {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100% - 32px, var(--max));
    margin: -84px auto 24px;
    transform: none;
  }

  .next-strip span {
    font-size: 0.78rem;
    padding: 12px;
  }
}
