/* Global styles for HO HO HOLDING AS */

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

:root {
  --color-bg: #050816;
  --color-bg-alt: #0b1020;
  --color-accent: #47c0ff;
  --color-accent-soft: rgba(71, 192, 255, 0.15);
  --color-text: #f5f7fb;
  --color-muted: #a4acc4;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-danger: #ff4b7d;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-subtle: 0 12px 30px rgba(0, 0, 0, 0.35);
  --max-width: 1120px;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at 0 0, #15325b 0, #050816 40%, #02030a 90%);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 20px 18px 40px;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(
      to bottom,
      rgba(5, 8, 22, 0.96),
      rgba(5, 8, 22, 0.7),
      transparent
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 18px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: conic-gradient(
    from 210deg,
    #47c0ff,
    #7f5dff,
    #ff4b7d,
    #47c0ff
  );
  padding: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 10px 30px rgba(0, 0, 0, 0.6);
}

.brand-mark-inner {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0, #ffffff 0, #0b1020 52%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #f5f7fb;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 16px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 11px;
  color: var(--color-muted);
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  position: relative;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--color-muted);
  border: 1px solid transparent;
  transition: all 0.18s ease-out;
}

.nav-link:hover {
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.nav-link.active {
  color: #050816;
  background: linear-gradient(135deg, #47c0ff, #7f5dff);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(71, 192, 255, 0.45);
}

.nav-cta {
  margin-left: 4px;
  padding: 7px 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #ffffff 0, #47c0ff 55%, #7f5dff);
  color: #050816;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(11, 16, 32, 0.5), 0 14px 32px rgba(0, 0, 0, 0.75);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
}

main {
  flex: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.6fr);
  gap: 34px;
  align-items: center;
  padding: 32px 0 40px;
}

.hero-copy {
  position: relative;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 9px 4px 4px;
  border-radius: 999px;
  background: rgba(10, 18, 42, 0.9);
  border: 1px solid rgba(71, 192, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(3, 8, 30, 0.9), var(--shadow-subtle);
  margin-bottom: 16px;
}

.hero-kicker-dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #ffffff, #47c0ff);
  box-shadow: 0 0 0 4px rgba(71, 192, 255, 0.18);
}

.hero-kicker-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
}

.hero-title {
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.hero-title span {
  background: linear-gradient(135deg, #f5f7fb, #c7e9ff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--color-muted);
  max-width: 40rem;
  margin-bottom: 26px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.pill {
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    to right,
    rgba(71, 192, 255, 0.14),
    rgba(127, 93, 255, 0.08)
  );
  color: var(--color-text);
}

.pill-muted {
  background: rgba(8, 16, 40, 0.9);
  color: var(--color-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: rgba(10, 16, 40, 0.9);
  color: var(--color-text);
  transition: all 0.18s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, #47c0ff, #7f5dff);
  color: #050816;
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.btn-outline {
  background: rgba(6, 10, 25, 0.9);
  color: var(--color-muted);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
}

.btn-icon {
  font-size: 18px;
}

.hero-meta {
  display: flex;
  gap: 20px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--color-muted);
}

.hero-meta-item strong {
  display: block;
  color: var(--color-text);
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: 26px;
  background: radial-gradient(circle at 0 0, #1a365d, #050816 50%, #050816 100%);
  padding: 20px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 9px 4px 4px;
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
  font-size: 11px;
}

.hero-badge-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #ffffff, #47c0ff);
}

.hero-badge span:last-child {
  color: var(--color-muted);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.metric-card {
  border-radius: var(--radius-md);
  padding: 10px 11px;
  background: linear-gradient(
      135deg,
      rgba(71, 192, 255, 0.12),
      rgba(14, 22, 50, 0.98)
    ),
    radial-gradient(circle at 0 0, rgba(127, 93, 255, 0.5), transparent 55%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.metric-label {
  color: var(--color-muted);
  margin-bottom: 4px;
}

.metric-value {
  font-size: 18px;
  font-weight: 650;
}

.metric-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  margin-top: 2px;
  color: var(--color-muted);
}

.metric-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.hero-grid {
  margin-top: 6px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 0 0, #15325b, #050816 60%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 11px 10px;
}

.hero-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 8px;
  color: var(--color-muted);
}

.hero-grid-dots {
  display: flex;
  gap: 4px;
}

.hero-grid-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
}

.hero-grid-dot:nth-child(1) {
  background: #ff4b7d;
}

.hero-grid-dot:nth-child(2) {
  background: #ffc857;
}

.hero-grid-dot:nth-child(3) {
  background: #47c0ff;
}

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

.hero-grid-col {
  border-radius: 12px;
  background: rgba(5, 8, 22, 0.9);
  padding: 8px 9px 7px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.hero-grid-col-title {
  font-size: 11px;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.hero-grid-bar {
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #47c0ff, #7f5dff);
  margin-bottom: 6px;
}

.hero-grid-label {
  font-size: 10px;
  color: var(--color-muted);
}

.hero-float {
  position: absolute;
  inset: auto auto -40px -38px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(71, 192, 255, 0.18), transparent 60%);
  filter: blur(4px);
  opacity: 0.9;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  inset: -40px -40px auto auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  opacity: 0.6;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 52%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #ffffff, #7f5dff);
  box-shadow: 0 0 18px rgba(127, 93, 255, 0.85);
}

.section {
  padding: 12px 0 40px;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 22px;
}

.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.section-title {
  font-size: 22px;
}

.section-lead {
  max-width: 30rem;
  font-size: 14px;
  color: var(--color-muted);
}

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

.card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 0 0, #101529, #050816 60%);
  padding: 16px 16px 15px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-title {
  font-size: 15px;
}

.card-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(71, 192, 255, 0.4);
  background: rgba(4, 10, 26, 0.9);
  color: var(--color-muted);
}

.card-body {
  font-size: 13px;
  color: var(--color-muted);
}

.card-list {
  margin-top: 10px;
  list-style: none;
}

.card-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
}

.card-list li + li {
  margin-top: 4px;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.64em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-accent);
}

.columns {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 26px;
}

.surface {
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  background: radial-gradient(circle at 0 0, #11182b, #050816 60%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
  font-size: 14px;
  color: var(--color-muted);
}

.surface h2,
.surface h3,
.surface h4 {
  margin-bottom: 10px;
}

.surface p + p {
  margin-top: 8px;
}

.surface-list {
  margin-top: 10px;
  padding-left: 18px;
}

.surface-list li + li {
  margin-top: 4px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 8px;
}

.table thead {
  background: rgba(10, 16, 40, 0.9);
}

.table th,
.table td {
  text-align: left;
  padding: 8px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table th {
  font-weight: 500;
  color: var(--color-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  background: rgba(11, 16, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

.timeline {
  margin-top: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 14px;
}

.timeline-item {
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 13px;
  font-weight: 500;
}

.timeline-meta {
  font-size: 11px;
  color: var(--color-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 24px;
}

.form {
  display: grid;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
}

.field input,
.field textarea,
.field select {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 8, 22, 0.96);
  padding: 9px 11px;
  color: var(--color-text);
  font-family: inherit;
  font-size: 14px;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(71, 192, 255, 0.35);
}

.field-hint {
  font-size: 11px;
  color: var(--color-muted);
}

.map-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: radial-gradient(circle at 0 0, #0e1c33, #050816 60%);
  padding: 16px 16px 13px;
  box-shadow: var(--shadow-subtle);
  font-size: 13px;
  color: var(--color-muted);
}

.map-address {
  margin-top: 8px;
}

.map-address strong {
  color: var(--color-text);
}

.map-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.map-placeholder {
  border-radius: 14px;
  border: 1px solid rgba(71, 192, 255, 0.2);
  background: radial-gradient(circle at 0 0, #47c0ff, #050816 70%);
  padding: 10px 10px 9px;
  color: rgba(5, 8, 22, 0.92);
  font-size: 11px;
  font-weight: 500;
}

.map-placeholder span {
  display: block;
}

.map-mini {
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  background: rgba(3, 8, 28, 0.94);
  padding: 10px 10px 9px;
  font-size: 11px;
}

.map-mini-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.map-mini-label {
  color: var(--color-muted);
}

.map-mini-value {
  color: var(--color-text);
  font-weight: 500;
}

.pill-small {
  padding: 4px 7px;
  font-size: 10px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(circle at 0 0, #101529, #050816 55%);
  margin-top: 20px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 18px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-muted);
}

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

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

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

.page-title {
  padding: 32px 0 22px;
}

.page-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.page-heading {
  font-size: 26px;
}

.breadcrumb {
  margin-top: 10px;
  font-size: 12px;
  color: var(--color-muted);
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb a:hover {
  color: var(--color-text);
}

.highlight-box {
  border-radius: var(--radius-lg);
  padding: 14px 14px 12px;
  background: var(--color-accent-soft);
  border: 1px solid rgba(71, 192, 255, 0.45);
  font-size: 13px;
  color: #e8f6ff;
  box-shadow: var(--shadow-subtle);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.stat {
  min-width: 120px;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.stat-value {
  font-size: 18px;
  font-weight: 650;
}

.pill-neutral {
  background: rgba(5, 8, 22, 0.96);
  color: var(--color-muted);
}

.stacked-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.stacked-item {
  border-radius: 14px;
  padding: 10px 11px 9px;
  background: rgba(5, 8, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: var(--color-muted);
}

.stacked-item strong {
  color: var(--color-text);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.chip {
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  background: rgba(9, 14, 34, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-muted);
}

.note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--color-muted);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1.2fr);
  }

  .hero-visual {
    order: -1;
  }

  .hero-card {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  nav.main-nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 22px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

