:root {
  color-scheme: light dark;
  --font-display: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --bg: #f3f7fb;
  --bg-elevated: rgba(255, 255, 255, 0.78);
  --bg-strong: rgba(255, 255, 255, 0.94);
  --text: #09111f;
  --text-soft: #506078;
  --line: rgba(11, 26, 51, 0.08);
  --primary: #0c6cf2;
  --primary-strong: #0754c2;
  --secondary: #12b3a8;
  --accent: #ff9f45;
  --shadow: 0 28px 70px rgba(9, 17, 31, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #07101c;
    --bg-elevated: rgba(11, 19, 32, 0.76);
    --bg-strong: rgba(12, 18, 31, 0.92);
    --text: #eef4ff;
    --text-soft: #9eb0c9;
    --line: rgba(154, 173, 206, 0.12);
    --primary: #68a7ff;
    --primary-strong: #8dc1ff;
    --secondary: #5be6d5;
    --accent: #ffb76b;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(18, 179, 168, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(12, 108, 242, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), transparent 24%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

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

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-shell {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.orb,
.grid-glow {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

.orb {
  width: 28rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.48;
}

.orb-one {
  top: -6rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(18, 179, 168, 0.4), transparent 70%);
  animation: float 16s ease-in-out infinite;
}

.orb-two {
  top: 22rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(12, 108, 242, 0.35), transparent 70%);
  animation: float 18s ease-in-out infinite reverse;
}

.grid-glow {
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 143, 173, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 143, 173, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 88%);
}

.section {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: 1.3rem 0;
}

.hero {
  padding-top: 0.8rem;
}

.hero-card,
.action-card,
.info-card,
.benefit-card,
.video-placeholder,
.contact-card {
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.hero-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: clamp(1.15rem, 2.3vw, 1.7rem);
}

@media (prefers-color-scheme: dark) {
  .hero-card {
    background: linear-gradient(145deg, rgba(9, 18, 32, 0.88), rgba(9, 18, 32, 0.56));
    border-color: rgba(173, 194, 226, 0.09);
  }
}

.hero-brand,
.hero-content,
.hero-metrics,
.section-heading,
.action-grid,
.card-grid,
.benefit-grid,
.contact-grid,
.site-footer {
  display: grid;
}

.hero-content {
  grid-template-columns: minmax(0, 330px) minmax(0, 1fr);
  gap: clamp(1.1rem, 2.4vw, 2rem);
  align-items: start;
}

.profile-frame {
  position: relative;
  width: 100%;
  max-width: 330px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 34px;
}

.profile-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  border-radius: 36px;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.info-card h3,
.benefit-card h3,
.video-core strong,
.action-text strong,
.contact-card strong {
  font-family: var(--font-display);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.role,
.company,
.intro,
.section-heading p,
.benefit-card p,
.video-core p,
.action-text small,
.contact-card span,
.hero-metrics span {
  color: var(--text-soft);
}

.role {
  margin: 1rem 0 0.4rem;
  font-size: clamp(1.18rem, 2.2vw, 1.58rem);
  font-weight: 800;
  line-height: 1.3;
}

.company {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.intro {
  margin: 1rem 0 0;
  max-width: 64ch;
  font-size: 1.04rem;
  line-height: 1.82;
}

.intro-secondary {
  margin-top: 0.85rem;
  max-width: 66ch;
}

.mobile-brand,
.mobile-role-short,
.mobile-quick-actions,
.mobile-photo-frame {
  display: none;
}

.mobile-brand {
  margin: 0 0 0.6rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-role-short {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  font-weight: 700;
}

.mobile-quick-actions {
  gap: 0.75rem;
  margin-top: 1rem;
}

.mobile-quick-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-elevated);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.mobile-quick-button-accent {
  background: linear-gradient(135deg, rgba(255, 159, 69, 0.18), rgba(12, 108, 242, 0.08)), var(--bg-strong);
}

.mobile-photo-frame {
  margin-top: 1rem;
  max-width: 230px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 28px;
}

.mobile-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero-metrics article,
.info-card,
.benefit-card,
.video-placeholder,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
}

.hero-metrics article {
  padding: 1rem;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.section-heading {
  gap: 0.3rem;
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-heading p:last-child {
  margin: 0.2rem 0 0;
  max-width: 62ch;
  line-height: 1.7;
}

.action-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.action-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 112px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  box-shadow: 0 14px 28px rgba(8, 16, 29, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.action-card:hover,
.action-card:focus-visible,
.info-card:hover,
.benefit-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(12, 108, 242, 0.28);
  box-shadow: 0 22px 38px rgba(8, 16, 29, 0.12);
}

.action-card:focus-visible,
.contact-card:focus-visible {
  outline: 2px solid rgba(12, 108, 242, 0.35);
  outline-offset: 2px;
}

.action-primary {
  background: linear-gradient(135deg, rgba(12, 108, 242, 0.16), rgba(18, 179, 168, 0.12)), var(--bg-strong);
}

.action-accent {
  background: linear-gradient(135deg, rgba(255, 159, 69, 0.18), rgba(12, 108, 242, 0.08)), var(--bg-strong);
}

.action-emoji {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 1.5rem;
  flex-shrink: 0;
}

@media (prefers-color-scheme: dark) {
  .action-emoji {
    background: rgba(255, 255, 255, 0.06);
  }
}

.action-text {
  display: grid;
  gap: 0.25rem;
  text-align: left;
}

.action-text strong {
  font-size: 1.04rem;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.info-card,
.benefit-card {
  padding: 1.3rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.info-card h3,
.benefit-card h3 {
  margin: 0.9rem 0 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

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

.benefit-card p {
  margin: 0.75rem 0 0;
  line-height: 1.65;
}

.icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(12, 108, 242, 0.14), rgba(18, 179, 168, 0.16));
  color: var(--primary);
}

.icon-wrap svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-large {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 20px;
}

.video-placeholder {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at center, rgba(12, 108, 242, 0.18), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46));
}

@media (prefers-color-scheme: dark) {
  .video-placeholder {
    background:
      radial-gradient(circle at center, rgba(104, 167, 255, 0.18), transparent 35%),
      linear-gradient(145deg, rgba(9, 18, 32, 0.72), rgba(9, 18, 32, 0.46));
  }
}

.video-placeholder::before,
.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 22px;
}

.video-placeholder::before {
  border: 1px dashed rgba(12, 108, 242, 0.34);
}

.video-placeholder::after {
  inset: auto 2rem 2rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 159, 69, 0.22), transparent 68%);
}

.video-core {
  position: relative;
  z-index: 1;
  max-width: 520px;
  text-align: center;
}

.video-core strong {
  display: block;
  margin-top: 1rem;
  font-size: 1.3rem;
}

.video-core p {
  margin: 0.8rem 0 0;
  line-height: 1.7;
}

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.contact-card strong,
.contact-card span {
  display: block;
}

.contact-card span {
  margin-top: 0.2rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.site-footer {
  gap: 0.15rem;
  justify-items: center;
  padding: 2rem 1rem 2.4rem;
  color: var(--text-soft);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.noscript-banner {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 5;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: #111827;
  color: #f8fbff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 18px, 0) scale(1.04);
  }
}

@media (max-width: 1080px) {
  .action-grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .section {
    width: min(calc(100% - 1.15rem), var(--container));
  }

  .hero {
    padding-top: 0.65rem;
  }

  .hero-card {
    border-radius: 26px;
    padding: 1.15rem;
  }

  .hero-brand,
  .hero-content {
    grid-template-columns: 1fr;
  }

  .brand-badge {
    justify-self: start;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .profile-frame {
    order: 2;
    max-width: 220px;
    margin: 0 auto;
  }

  .hero-copy {
    order: 1;
    text-align: left;
  }

  .profile-frame {
    display: none;
  }

  .mobile-brand,
  .mobile-role-short,
  .mobile-quick-actions,
  .mobile-photo-frame {
    display: grid;
  }

  .mobile-photo-frame {
    display: block;
    margin: 1.25rem auto 0;
  }

  .hero-copy h1 {
    text-align: left;
    font-size: clamp(2rem, 8vw, 2.7rem);
    line-height: 1.02;
  }

  .role,
  .company,
  .actions.section,
  .services.section {
    display: none;
  }

  .intro,
  .intro-secondary {
    display: block;
    text-align: left;
    max-width: none;
  }

  .intro {
    margin-top: 1rem;
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .intro-secondary {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .action-grid,
  .card-grid,
  .benefit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .action-card {
    min-height: 96px;
  }

  .video-placeholder {
    min-height: 260px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
