@font-face {
  font-family: "Mokoto";
  src:
    local("Mokoto"),
    local("Mokoto Demo"),
    url("assets/fonts/mokoto.regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #06101a;
  --bg-deep: #030913;
  --bg-panel: rgba(8, 18, 30, 0.92);
  --bg-panel-soft: rgba(10, 23, 37, 0.84);
  --line: rgba(117, 189, 255, 0.16);
  --line-strong: rgba(117, 189, 255, 0.28);
  --text: #edf6ff;
  --muted: #98adc2;
  --blue: #56aeff;
  --teal: #41c1ba;
  --teal-soft: #77ead8;
  --medical: #6ad7ff;
  --business: #72d7b3;
  --marketing: #5fb7ff;
  --education: #9ce47e;
  --hospitality: #f0c979;
  --hosting: #8fa8ff;
  --finance: #90f0cf;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --heading-font: "Mokoto", "Orbitron", "Rajdhani", "Arial Black", sans-serif;
  --body-font: "Sora", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--body-font);
  background:
    radial-gradient(circle at top left, rgba(86, 174, 255, 0.16), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(65, 193, 186, 0.14), transparent 20%),
    linear-gradient(180deg, #040a12 0%, #07111b 55%, #030913 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.55;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.page-wrap {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 0 18px;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(4, 11, 19, 0.92), rgba(4, 11, 19, 0.62));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(8, 19, 31, 0.9), rgba(6, 13, 22, 0.88));
  box-shadow: var(--shadow);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  text-decoration: none;
}

.brandmark img {
  width: auto;
  height: 72px;
  max-width: 100%;
  filter: drop-shadow(0 10px 26px rgba(86, 174, 255, 0.2));
}

.brandmark-header img {
  height: clamp(52px, 6vw, 76px);
}

.brandmark strong,
.footer-title,
.eyebrow,
.brand-kicker,
.hero-card-label,
.page-title,
.section-heading h2,
.hero-copy h1,
.hero-card h2,
.callout-panel h3,
.info-card h2,
.contact-card h2,
.portfolio-card h2 {
  font-family: var(--heading-font);
}

.brandmark strong {
  display: block;
  font-size: 1.06rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brandmark span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(117, 189, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(117, 189, 255, 0.14);
}

.hero-band,
.page-hero {
  padding: 44px 0 28px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.feature-card,
.brand-card,
.callout-panel,
.info-card,
.timeline-card,
.portfolio-card,
.contact-card,
.site-footer {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card,
.info-card,
.contact-card {
  border-radius: var(--radius-xl);
  padding: 34px;
}

.hero-copy {
  background:
    linear-gradient(145deg, rgba(8, 18, 30, 0.98), rgba(10, 24, 40, 0.9)),
    linear-gradient(130deg, rgba(86, 174, 255, 0.08), rgba(65, 193, 186, 0.06));
}

.eyebrow,
.hero-card-label,
.brand-kicker {
  margin: 0 0 14px;
  color: var(--teal-soft);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  line-height: 1.02;
  max-width: 13ch;
  letter-spacing: 0.01em;
  word-spacing: -0.1em;
}

.lead,
.section-text,
.feature-card p,
.brand-card p,
.footer-copy,
.info-card p,
.timeline-card p,
.portfolio-card p,
.contact-card p,
.stat-list span {
  color: var(--muted);
  line-height: 1.8;
}

.lead {
  margin: 22px 0 0;
  max-width: 64ch;
  font-size: 1.02rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.visit-link:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #05111b;
  background: linear-gradient(135deg, var(--teal-soft), var(--blue));
}

.button-secondary {
  color: var(--text);
  border-color: rgba(117, 189, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.hero-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 22, 36, 0.98), rgba(7, 15, 27, 0.92));
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 174, 255, 0.16), transparent 70%);
}

.hero-card h2 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.2;
  max-width: 15ch;
}

.stat-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.stat-list article {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.stat-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-soft);
  font-family: var(--heading-font);
  letter-spacing: 0.08em;
}

.section-shell {
  padding: 28px 0;
}

.section-contrast {
  padding-bottom: 44px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.page-title {
  font-size: clamp(1.7rem, 3.5vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  word-spacing: -0.08em;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: end;
}

.feature-grid,
.brand-grid,
.content-grid,
.timeline-grid,
.portfolio-grid,
.contact-layout,
.footer-grid {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-grid-home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid,
.contact-layout,
.portfolio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.feature-card,
.brand-card,
.timeline-card,
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 24px;
}

.feature-card,
.timeline-card,
.portfolio-card,
.contact-card,
.brand-card {
  background: var(--bg-panel-soft);
}

.feature-card::before,
.brand-card::before,
.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.04), transparent 50%);
  pointer-events: none;
}

.icon-card .card-icon,
.brand-card-top,
.portfolio-meta {
  position: relative;
  z-index: 1;
}

.feature-card h3,
.brand-card h3,
.timeline-card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.hero-visual-frame {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(117, 189, 255, 0.18);
  border-radius: 24px;
  min-height: 230px;
}

.hero-visual-frame img,
.image-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-list-compact article {
  padding: 14px 0;
}

.image-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
  margin-top: 20px;
}

.image-story-card,
.image-story-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-panel-soft);
  box-shadow: var(--shadow);
}

.image-story-card {
  overflow: hidden;
  min-height: 320px;
}

.futuristic-panel {
  position: relative;
  height: 100%;
  min-height: 320px;
  background:
    radial-gradient(circle at 75% 25%, rgba(86, 174, 255, 0.28), transparent 22%),
    radial-gradient(circle at 25% 75%, rgba(119, 234, 216, 0.18), transparent 24%),
    linear-gradient(160deg, rgba(7, 20, 32, 0.96), rgba(5, 11, 19, 1));
}

.futuristic-panel-alt {
  background:
    radial-gradient(circle at 68% 22%, rgba(119, 234, 216, 0.24), transparent 20%),
    radial-gradient(circle at 18% 70%, rgba(86, 174, 255, 0.2), transparent 22%),
    linear-gradient(160deg, rgba(8, 18, 31, 0.98), rgba(4, 9, 17, 1));
}

.futuristic-orb {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 174, 255, 0.55), rgba(86, 174, 255, 0.08) 60%, transparent 70%);
  filter: blur(2px);
}

.futuristic-ui {
  position: absolute;
  left: 26px;
  right: 26px;
  top: 26px;
  display: grid;
  gap: 12px;
}

.futuristic-ui span,
.futuristic-tiles span {
  display: block;
  border: 1px solid rgba(117, 189, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.futuristic-ui span:nth-child(1) {
  width: 52%;
  height: 12px;
  border-radius: 999px;
}

.futuristic-ui span:nth-child(2) {
  width: 72%;
  height: 12px;
  border-radius: 999px;
}

.futuristic-ui span:nth-child(3) {
  width: 38%;
  height: 12px;
  border-radius: 999px;
}

.futuristic-tiles {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.futuristic-tiles span {
  min-height: 88px;
  border-radius: 22px;
}

.image-story-copy {
  padding: 28px;
}

.image-story-copy h3 {
  margin-bottom: 12px;
  font-family: var(--heading-font);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  word-spacing: -0.06em;
}

.image-story-copy p:last-child {
  margin-bottom: 0;
}

.brand-card-top,
.portfolio-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--heading-font);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.04);
}

.medical { color: var(--medical); }
.business { color: var(--business); }
.marketing { color: var(--marketing); }
.education { color: var(--education); }
.hospitality { color: var(--hospitality); }
.hosting { color: var(--hosting); }
.finance { color: var(--finance); }
.systems { color: var(--blue); }
.growth { color: var(--teal-soft); }

.niche-medical { border-color: rgba(106, 215, 255, 0.22); }
.niche-business { border-color: rgba(114, 215, 179, 0.22); }
.niche-marketing { border-color: rgba(95, 183, 255, 0.22); }
.niche-education { border-color: rgba(156, 228, 126, 0.22); }
.niche-hospitality { border-color: rgba(240, 201, 121, 0.22); }
.niche-hosting { border-color: rgba(143, 168, 255, 0.22); }
.niche-finance { border-color: rgba(144, 240, 207, 0.22); }

.visit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(117, 189, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.visit-link:hover {
  border-color: rgba(117, 189, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
}

.external-icon {
  font-size: 1rem;
  line-height: 1;
}

.callout-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(12, 28, 43, 0.96), rgba(8, 19, 31, 0.92));
}

.callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-main {
  padding-bottom: 36px;
}

.info-card h2,
.portfolio-card h2,
.contact-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  word-spacing: -0.07em;
}

.timeline-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(119, 234, 216, 0.2), rgba(86, 174, 255, 0.2));
  color: var(--teal-soft);
  font-family: var(--heading-font);
}

.portfolio-featured {
  background:
    linear-gradient(145deg, rgba(14, 34, 43, 0.98), rgba(8, 19, 31, 0.94));
  border-color: var(--line-strong);
}

.site-footer {
  margin: 18px auto 28px;
  border-radius: var(--radius-xl);
  padding: 34px 0 22px;
  background:
    linear-gradient(180deg, rgba(7, 16, 27, 0.98), rgba(5, 10, 18, 0.96));
}

.footer-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.brandmark-footer {
  margin-bottom: 16px;
}

.footer-copy {
  max-width: 58ch;
  margin-bottom: 14px;
}

.footer-phone {
  margin: 0 0 10px;
}

.footer-phone a {
  color: var(--teal-soft);
  text-decoration: none;
  font-weight: 700;
}

.footer-address {
  max-width: 52ch;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-actions-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom {
  padding-top: 18px;
}

.footer-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(117, 189, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-title {
  margin: 0 0 14px;
  font-size: 0.82rem;
  color: var(--teal-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-text {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--teal-soft);
  font-weight: 600;
  text-decoration: none;
}

.text-link::after {
  content: "->";
}

.contact-form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
  padding: 30px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form span {
  color: var(--text);
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(117, 189, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form-full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
}

.form-message-success {
  border: 1px solid rgba(119, 234, 216, 0.22);
  background: rgba(119, 234, 216, 0.08);
}

.form-message-error {
  border: 1px solid rgba(255, 138, 138, 0.22);
  background: rgba(255, 138, 138, 0.08);
}

.product-feature-grid {
  margin-top: 22px;
}

@media (max-width: 1100px) {
  .hero-layout,
  .section-heading.split,
  .feature-grid,
  .brand-grid-home,
  .image-story-grid,
  .content-grid,
  .timeline-grid,
  .portfolio-grid,
  .contact-layout,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    padding: 14px 0;
  }

  .navbar {
    position: relative;
    border-radius: 18px;
    padding: 18px;
    flex-wrap: wrap;
  }

  .brandmark img {
    height: 76px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding-top: 12px;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  .header-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .hero-card,
  .info-card,
  .contact-card {
    padding: 28px;
  }

  .feature-card,
  .brand-card,
  .timeline-card,
  .portfolio-card,
  .callout-panel {
    padding: 22px;
  }

}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .hero-band,
  .page-hero {
    padding-top: 24px;
  }

  .brandmark {
    gap: 12px;
    max-width: calc(100% - 64px);
  }

  .brandmark img {
    height: 58px;
  }

  .brandmark strong {
    font-size: 0.92rem;
  }

  .brandmark span {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero-copy,
  .hero-card,
  .info-card,
  .contact-card,
  .feature-card,
  .brand-card,
  .timeline-card,
  .portfolio-card,
  .callout-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-copy h1,
  .page-title,
  .section-heading h2 {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .image-story-card {
    min-height: 240px;
  }

  .futuristic-panel {
    min-height: 240px;
  }

  .brand-card-top,
  .portfolio-head,
  .callout-panel,
  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .visit-link,
  .button {
    width: 100%;
  }

  .footer-links,
  .callout-actions {
    grid-template-columns: 1fr;
  }

  .callout-actions,
  .form-actions,
  .footer-actions-bar {
    width: 100%;
  }

  .footer-action-button {
    width: 100%;
  }
}

.brandmark-footer img {
  height: clamp(54px, 7vw, 82px);
}
