:root {
  color-scheme: dark;
  --bg: #0c0d10;
  --panel: #14161b;
  --panel-strong: #191b21;
  --line: rgba(244, 244, 245, 0.11);
  --ink: #f4f4f5;
  --muted: #a1a1aa;
  --soft: #d4d4d8;
  --accent: #a78bfa;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

.topbar {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(12, 13, 16, 0.82);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 68px;
  padding: 12px clamp(18px, 5vw, 58px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 40px;
  object-fit: cover;
  width: 64px;
}

.brand span {
  font-weight: 760;
  white-space: nowrap;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

nav a {
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 680;
  padding: 8px 10px;
  text-decoration: none;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
  color: var(--ink);
}

.home-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(24px, 5vw, 58px);
  width: 100%;
}

.hero-clean {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.72fr);
  min-height: auto;
  padding: clamp(34px, 6vw, 82px) 0 clamp(42px, 7vw, 92px);
}

.hero-clean > *,
.management-section > *,
.contact-area > * {
  min-width: 0;
}

.hero-copy {
  max-width: 700px;
  min-width: 0;
}

.hero-mark {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  margin-bottom: 26px;
  max-width: min(380px, 100%);
  width: 100%;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.7rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 18px;
  max-width: 660px;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 2.45rem);
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 0;
}

h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.hero-text {
  color: var(--soft);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.65;
  max-width: 640px;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-pills a {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  text-decoration: none;
}

.contact-pills svg,
.icon-list svg,
.check-list svg {
  fill: none;
  flex: 0 0 auto;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 18px;
}

.business-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.business-panel img {
  background: #f6f7f8;
  display: block;
  max-width: 100%;
  width: 100%;
}

.business-panel dl {
  margin: 0;
  padding: 10px 20px 22px;
}

.business-panel dl div {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.business-panel dl div:last-child {
  border-bottom: 0;
}

.icon-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.icon-list article {
  display: flex;
  gap: 16px;
  padding: 28px 24px;
}

.icon-list article + article {
  border-left: 1px solid var(--line);
}

.icon-list h2 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.icon-list p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.management-section,
.contact-area {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.95fr);
  padding: clamp(48px, 8vw, 96px) 0;
}

.management-section p,
.contact-area p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.check-list li {
  align-items: center;
  color: var(--soft);
  display: flex;
  gap: 10px;
}

.dashboard-image {
  align-self: center;
  background: #f6f7f8;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  max-width: 100%;
  min-width: 0;
  width: 100%;
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  font-size: 1rem;
  font-weight: 680;
  margin: 4px 0 0;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 26px clamp(18px, 5vw, 58px);
}

footer a {
  color: var(--soft);
  font-weight: 680;
  text-decoration: none;
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 20px;
}

.contact-form label {
  color: var(--soft);
  display: grid;
  font-size: 0.9rem;
  font-weight: 680;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  background: #0f1116;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 42px;
  outline: none;
  padding: 10px 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(244, 244, 245, 0.28);
}

.contact-form button {
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--bg);
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  min-height: 44px;
  padding: 0 14px;
}

.hidden-field {
  display: none;
}

.simple-page {
  margin: 0 auto;
  max-width: 1120px;
  padding: clamp(42px, 7vw, 94px) clamp(18px, 5vw, 70px);
}

.simple-hero {
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  padding-bottom: clamp(32px, 6vw, 70px);
}

.simple-hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  max-width: 900px;
}

.simple-hero p {
  color: #d8ccec;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
  max-width: 780px;
}

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

.simple-grid article,
.simple-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.simple-card h2:not(:first-child) {
  margin-top: 28px;
}

.simple-card p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero-clean,
  .icon-list,
  .section-heading,
  .service-grid,
  .management-section,
  .contact-area,
  .contact-section,
  .simple-grid {
    grid-template-columns: 1fr;
  }

  .hero-clean {
    display: block;
    min-height: auto;
  }

  .hero-copy,
  .hero-text,
  .eyebrow,
  h1 {
    max-width: calc(100vw - 48px);
  }

  .business-panel {
    margin-top: 34px;
    max-width: calc(100vw - 48px);
    width: 100%;
  }

  .management-section,
  .contact-area {
    display: block;
  }

  .dashboard-image,
  .contact-form {
    margin-top: 24px;
    max-width: calc(100vw - 48px);
  }

  .icon-list article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .home-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.15rem);
  }

  .business-panel img,
  .dashboard-image {
    display: none !important;
  }

  .brand span {
    white-space: normal;
  }

  .contact-pills a {
    justify-content: center;
    width: 100%;
  }

  .dashboard-image {
    margin-top: 4px;
  }
}
