@import "https://unpkg.com/open-props";
@import "https://unpkg.com/open-props/normalize.min.css";
@import "https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap";

:root {
  --brand-950: #172554;
  --brand-900: #1e378b;
  --brand-800: #2948b8;
  --brand-700: #3658d1;
  --brand-600: #4169e1;
  --brand-500: #6483e9;
  --brand-100: #e3e9ff;
  --brand-50: #f5f7ff;
  --ink: #172b44;
  --muted: #5e7085;
  --line: #d4e0ec;
  --surface: #ffffff;
  --surface-soft: #f3f7fb;
  --success: #27836a;
  --shadow-soft: 0 24px 60px rgb(20 42 62 / 10%);
  --shadow-card: 0 12px 34px rgb(28 51 73 / 7%);
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: "Manrope", var(--font-sans);
  line-height: 1.65;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

.container { width: min(calc(100% - 2rem), var(--content)); margin-inline: auto; }
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgb(255 255 255 / 92%);
  border-bottom: 1px solid rgb(220 229 240 / 85%);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; font-weight: 800; letter-spacing: -.04em; font-size: 1.3rem; color: var(--brand-950); }
.brand-mark { position: relative; width: 42px; aspect-ratio: 1; border-radius: 12px; background: linear-gradient(135deg, var(--brand-600), var(--brand-800)); box-shadow: 0 8px 18px rgb(30 107 214 / 25%); }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; border: 3px solid white; border-radius: 50%; }
.brand-mark::before { width: 18px; height: 18px; left: 7px; top: 7px; }
.brand-mark::after { width: 13px; height: 13px; right: 6px; bottom: 6px; background: var(--brand-500); }
.brand span:last-child { color: var(--brand-600); }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a { padding: .65rem .85rem; color: #47566c; font-size: .92rem; font-weight: 650; text-decoration: none; border-radius: 9px; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-700); background: var(--brand-50); }
.nav-cta { margin-left: .4rem; color: white !important; background: var(--brand-600) !important; box-shadow: 0 7px 18px rgb(30 107 214 / 20%); }
.menu-button { display: none; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: white; color: var(--brand-900); cursor: pointer; }
.menu-button svg { width: 23px; }

.hero { position: relative; overflow: hidden; background: linear-gradient(125deg, var(--brand-950) 0%, var(--brand-900) 56%, #164f8d 100%); color: white; }
.hero::before { content: ""; position: absolute; width: 670px; aspect-ratio: 1; right: -210px; top: -290px; border: 1px solid rgb(255 255 255 / 12%); border-radius: 50%; box-shadow: 0 0 0 80px rgb(255 255 255 / 3%), 0 0 0 160px rgb(255 255 255 / 2%); }
.hero-grid { min-height: 650px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 5rem; align-items: center; padding-block: 5.5rem; }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 1rem; color: #98c9ff; text-transform: uppercase; letter-spacing: .14em; font-weight: 750; font-size: .75rem; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--brand-500); }
h1, h2, h3 { color: inherit; line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 720px; margin: 0; font-size: clamp(2.65rem, 6vw, 5.25rem); }
.hero-copy > p:not(.eyebrow) { max-width: 670px; margin: 1.5rem 0 0; color: #cfdded; font-size: clamp(1rem, 1.7vw, 1.22rem); }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 49px; padding: .7rem 1.2rem; border: 1px solid transparent; border-radius: 10px; text-decoration: none; font-weight: 750; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--brand-950); background: white; box-shadow: 0 12px 30px rgb(0 0 0 / 18%); }
.button-outline { color: white; border-color: rgb(255 255 255 / 35%); background: rgb(255 255 255 / 6%); }
.button-blue { color: white; background: var(--brand-600); box-shadow: 0 10px 24px rgb(30 107 214 / 23%); }
.hero-visual { position: relative; min-height: 430px; }
.dashboard { position: absolute; inset: 25px 0 20px 10px; overflow: hidden; border: 1px solid rgb(255 255 255 / 18%); border-radius: 20px; background: rgb(255 255 255 / 96%); box-shadow: 0 35px 75px rgb(0 10 30 / 38%); transform: perspective(1000px) rotateY(-5deg) rotateX(2deg); }
.dash-top { height: 55px; display: flex; align-items: center; gap: 7px; padding-inline: 1.2rem; border-bottom: 1px solid var(--line); }
.dash-top i { width: 8px; height: 8px; border-radius: 50%; background: #cbd6e4; }
.dash-body { display: grid; grid-template-columns: 90px 1fr; height: calc(100% - 55px); }
.dash-side { background: var(--brand-950); padding: 1.2rem .8rem; }
.dash-side i { display: block; height: 7px; margin-bottom: 20px; border-radius: 10px; background: rgb(255 255 255 / 18%); }
.dash-main { padding: 1.4rem; background: #f6f8fb; }
.dash-title { width: 42%; height: 13px; margin-bottom: 1.2rem; border-radius: 20px; background: #263c5b; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
.stat { height: 74px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.stat::before { content: ""; display: block; width: 28px; height: 8px; margin: 14px; border-radius: 8px; background: var(--brand-500); }
.stat::after { content: ""; display: block; width: 50%; height: 13px; margin: 0 14px; border-radius: 8px; background: #c7d3e2; }
.chart { position: relative; height: 148px; margin-top: .8rem; border: 1px solid var(--line); border-radius: 10px; background: repeating-linear-gradient(to bottom, white, white 36px, #edf1f6 37px); }
.chart svg { position: absolute; inset: 15px; width: calc(100% - 30px); height: calc(100% - 30px); }
.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-top: .8rem; }
.person { height: 56px; border-radius: 9px; background: white; border: 1px solid var(--line); }
.floating-card { position: absolute; z-index: 2; right: -25px; bottom: 15px; width: 210px; padding: 1rem; color: var(--ink); border-radius: 14px; background: white; box-shadow: var(--shadow-soft); }
.floating-card strong { display: block; font-size: .9rem; }
.floating-card span { color: var(--success); font-size: .8rem; font-weight: 700; }

.section { padding-block: clamp(4.5rem, 8vw, 7.5rem); }
.section-soft { background: var(--surface-soft); }
.section-dark { color: white; background: var(--brand-950); }
.section-heading { max-width: 710px; margin-bottom: 2.5rem; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading .eyebrow { color: var(--brand-600); }
.section-heading h2 { margin: 0; color: var(--brand-950); font-size: clamp(2.1rem, 4vw, 3.5rem); }
.section-heading p { margin: 1rem 0 0; color: var(--muted); font-size: 1.06rem; }
.section-dark .section-heading h2, .section-dark h2 { color: white; }
.section-dark .section-heading p { color: #bccce0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.intro-panel { padding: clamp(2rem, 5vw, 4rem); border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, white, var(--brand-50)); box-shadow: var(--shadow-card); }
.intro-panel p { margin: 0; color: #53647d; font-size: 1.08rem; }
.intro-panel p + p { margin-top: 1.2rem; }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; counter-reset: steps; }
.step { position: relative; min-height: 260px; padding: 1.6rem 1.3rem; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow-card); counter-increment: steps; }
.step::after { content: counter(steps, decimal-leading-zero); position: absolute; right: -5px; bottom: -27px; color: var(--brand-100); font-size: 6rem; line-height: 1; font-weight: 850; }
.step-number { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 1.3rem; color: white; border-radius: 11px; background: var(--brand-600); font-weight: 800; box-shadow: 0 8px 20px rgb(30 107 214 / 23%); }
.step h3 { position: relative; z-index: 1; margin: 0 0 .8rem; color: var(--brand-950); font-size: 1.12rem; }
.step p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: .92rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-card { padding: 1.8rem; border: 1px solid var(--line); border-radius: 16px; background: white; transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 1.2rem; color: var(--brand-600); border-radius: 13px; background: var(--brand-100); }
.icon svg { width: 23px; }
.feature-card h3 { margin: 0 0 .55rem; color: var(--brand-950); font-size: 1.15rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.profile-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; padding: 0; list-style: none; }
.profile-list li, .check-list li { position: relative; padding: .95rem 1rem .95rem 2.8rem; border: 1px solid var(--line); border-radius: 11px; background: white; font-weight: 650; }
.profile-list li::before, .check-list li::before { content: "✓"; position: absolute; left: 1rem; color: var(--success); font-weight: 900; }
.check-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.check-panel { padding: 2rem; border-radius: 18px; background: white; box-shadow: var(--shadow-card); }
.check-panel h2 { margin: 0 0 1.4rem; color: var(--brand-950); font-size: 1.65rem; }
.check-list { display: grid; gap: .7rem; margin: 0; padding: 0; list-style: none; }
.check-list li { padding-block: .65rem; border: 0; background: var(--brand-50); color: #485974; font-size: .92rem; }

.page-hero { position: relative; overflow: hidden; padding-block: clamp(5rem, 10vw, 8rem); color: white; background: linear-gradient(120deg, var(--brand-950), var(--brand-800)); }
.page-hero::after { content: ""; position: absolute; width: 450px; height: 450px; right: -100px; top: -190px; border: 80px solid rgb(255 255 255 / 3%); border-radius: 50%; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 820px; font-size: clamp(2.7rem, 6vw, 4.8rem); }
.page-hero p:not(.eyebrow) { max-width: 700px; margin: 1.3rem 0 0; color: #c8d9ea; font-size: 1.15rem; }
.industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.industry { display: flex; align-items: center; min-height: 110px; padding: 1.4rem; border: 1px solid var(--line); border-radius: 15px; background: white; color: var(--brand-900); font-weight: 750; box-shadow: 0 7px 20px rgb(15 45 85 / 6%); }
.industry::before { content: ""; flex: 0 0 auto; width: 9px; height: 38px; margin-right: 1rem; border-radius: 10px; background: linear-gradient(var(--brand-500), var(--brand-700)); }
.cta { position: relative; overflow: hidden; padding: clamp(2.3rem, 6vw, 4.5rem); border-radius: 24px; color: white; background: linear-gradient(120deg, var(--brand-800), var(--brand-600)); box-shadow: 0 25px 65px rgb(23 86 162 / 25%); }
.cta::after { content: ""; position: absolute; width: 280px; aspect-ratio: 1; right: -80px; top: -120px; border: 55px solid rgb(255 255 255 / 6%); border-radius: 50%; }
.cta > * { position: relative; z-index: 1; }
.cta h2 { margin: 0; color: white; font-size: clamp(2rem, 4vw, 3.2rem); }
.cta p { max-width: 700px; color: #deecfa; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.cta-card { padding: 1.8rem; border: 1px solid rgb(255 255 255 / 18%); border-radius: 15px; background: rgb(255 255 255 / 8%); }
.cta-card h3 { margin-top: 0; color: white; }
.cta-card p { min-height: 55px; }

.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy .section-heading { margin-bottom: 0; }
.contact-form { padding: clamp(1.4rem, 4vw, 2.5rem); border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form-field { display: grid; gap: .45rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--brand-950); font-size: .88rem; font-weight: 750; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: .75rem .9rem;
  color: var(--ink);
  border: 1px solid #cbd7e5;
  border-radius: 9px;
  background: #fbfdff;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field textarea { min-height: 145px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--brand-500); background: white; box-shadow: 0 0 0 4px rgb(48 133 238 / 12%); }
.form-actions { display: flex; align-items: center; gap: 1rem; margin-top: 1.35rem; }
.form-actions .button { border: 0; cursor: pointer; }
.form-status { display: none; margin: 1rem 0 0; padding: .85rem 1rem; color: #08734e; border: 1px solid #a7e4cf; border-radius: 9px; background: #edfbf6; font-weight: 650; }
.form-status.show { display: block; }

.site-footer { padding: 2.7rem 0; color: #acbdd1; background: #06172e; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.site-footer .brand { color: white; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-links a { color: #acbdd1; text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: white; }
.domain { font-size: .85rem; }
.reveal { animation: fade-up .65s var(--ease-3) both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } }

/* Kilo v2 — refined editorial theme */
h1, h2 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; letter-spacing: -.025em; }
h3 { letter-spacing: -.02em; }
.site-header { background: rgb(255 255 255 / 95%); border-bottom-color: rgb(219 226 232 / 75%); }
.nav-wrap { min-height: 84px; }
.brand { gap: .8rem; letter-spacing: -.035em; }
.brand-mark { width: 40px; border-radius: 50%; background: linear-gradient(145deg, var(--brand-900), var(--brand-600)); box-shadow: 0 8px 22px rgb(65 105 225 / 28%); }
.brand-mark::before { border-width: 2px; }
.brand-mark::after { border-width: 2px; background: #8da5f3; }
.nav-links { gap: .1rem; }
.nav-links a { padding: .65rem .72rem; color: #566574; font-size: .86rem; letter-spacing: -.01em; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-700); background: #edf0ff; }
.nav-cta { margin-left: .55rem; padding-inline: 1rem !important; border-radius: 6px !important; background: var(--brand-600) !important; box-shadow: 0 8px 22px rgb(65 105 225 / 30%); }
.hero { background: linear-gradient(118deg, #172554 0%, #2948b8 58%, #4169e1 100%); }
.hero::before { opacity: .65; }
.hero-grid { min-height: 680px; }
.hero h1 { max-width: 760px; font-size: clamp(3rem, 6.2vw, 5.65rem); line-height: 1.02; }
.hero-copy > p:not(.eyebrow) { color: #d4dee5; font-weight: 400; }
.eyebrow { color: #b9c8ff; letter-spacing: .18em; font-weight: 700; }
.eyebrow::before { background: #91a8ff; }
.button { min-height: 50px; padding-inline: 1.35rem; border-radius: 6px; font-size: .9rem; letter-spacing: -.01em; }
.button-primary { color: var(--brand-950); box-shadow: 0 12px 25px rgb(0 0 0 / 14%); }
.button-outline { background: transparent; border-color: rgb(255 255 255 / 30%); }
.button-blue { background: var(--brand-600); box-shadow: 0 10px 26px rgb(65 105 225 / 30%); }
.dashboard { border-radius: 12px; box-shadow: 0 40px 85px rgb(2 16 28 / 38%); transform: perspective(1100px) rotateY(-3deg) rotateX(1deg); }
.dash-side { background: #1b2d69; }
.floating-card { border: 1px solid var(--line); border-radius: 8px; }
.section-heading h2 { line-height: 1.08; }
.section-heading p { color: #71808e; }
.intro-panel { border-radius: 12px; background: white; box-shadow: none; border-left: 4px solid var(--brand-500); }
.step { border-radius: 10px; box-shadow: none; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.step:hover { border-color: #b6c6d3; box-shadow: var(--shadow-card); transform: translateY(-3px); }
.step-number { width: 39px; height: 39px; border-radius: 50%; color: var(--brand-900); background: var(--brand-100); box-shadow: none; }
.step::after { color: #eff3f6; font-family: "DM Serif Display", Georgia, serif; font-weight: 400; }
.feature-card { position: relative; overflow: hidden; border-radius: 10px; box-shadow: none; }
.feature-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--brand-500); opacity: 0; transition: opacity .2s ease; }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.icon { width: 46px; height: 46px; border-radius: 50%; color: var(--brand-800); }
.profile-list li, .check-list li { border-radius: 7px; }
.check-panel { border: 1px solid var(--line); border-radius: 10px; box-shadow: none; }
.check-panel h2 { font-weight: 400; }
.page-hero { background: linear-gradient(118deg, #172554 0%, #2948b8 62%, #4169e1 100%); }
.page-hero h1 { line-height: 1.04; }
.industries { gap: .85rem; }
.industry { min-height: 105px; border-radius: 8px; box-shadow: none; transition: border-color .2s ease, transform .2s ease; }
.industry:hover { border-color: #aebfcd; transform: translateY(-2px); }
.industry::before { width: 3px; height: 32px; background: var(--brand-500); }
.cta { border-radius: 12px; background: linear-gradient(120deg, #1e378b, #4169e1); box-shadow: 0 26px 62px rgb(48 76 178 / 28%); }
.cta h2 { line-height: 1.05; }
.cta-card { border-radius: 8px; background: rgb(255 255 255 / 6%); }
.contact-form { border-radius: 12px; box-shadow: 0 20px 50px rgb(28 51 73 / 8%); }
.form-field input, .form-field select, .form-field textarea { border-radius: 6px; background: #fafbfc; }
.form-status { border-radius: 6px; }
.site-footer { background: #121d48; }

@media (max-width: 980px) {
  .menu-button { display: grid; }
  .nav-links { position: absolute; display: none; flex-direction: column; align-items: stretch; left: 1rem; right: 1rem; top: 70px; padding: .8rem; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: var(--shadow-soft); }
  .nav-links.open { display: flex; }
  .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; padding-top: 4rem; }
  .hero-visual { min-height: 380px; max-width: 620px; width: 100%; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .industries { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .container { width: min(calc(100% - 1.3rem), var(--content)); }
  .nav-wrap { min-height: 68px; }
  .brand { font-size: 1.12rem; }
  .brand-mark { width: 37px; }
  .hero-grid { min-height: auto; padding-block: 3.5rem; }
  .hero-visual { min-height: 300px; }
  .dashboard { inset: 10px 0; transform: none; }
  .dash-body { grid-template-columns: 62px 1fr; }
  .floating-card { right: 8px; width: 175px; }
  .split, .check-columns, .cta-grid, .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
  .steps, .feature-grid { grid-template-columns: 1fr; }
  .step { min-height: 210px; }
  .profile-list { grid-template-columns: 1fr; }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 430px) {
  .industries { grid-template-columns: 1fr; }
  .actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:last-child { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
