@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #0a1630;
  --ink-soft: #23304a;
  --paper: #f7f9fc;
  --white: #ffffff;
  --blue: #3156f5;
  --blue-deep: #1e3ed3;
  --cyan: #72dcff;
  --coral: #ff715f;
  --line: rgba(10, 22, 48, 0.12);
  --muted: #69748a;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(20, 38, 85, 0.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: .65rem 1rem;
  background: var(--white);
  border-radius: 10px;
}
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2.5rem), var(--max)); margin-inline: auto; }
.section { padding: 7rem 0; }
.section-tight { padding: 4rem 0; }
.section-dark { background: var(--ink); color: var(--white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1.25rem;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.section-dark .eyebrow, .hero .eyebrow { color: var(--cyan); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { margin-bottom: 1.5rem; font-size: clamp(3rem, 7vw, 6.7rem); font-weight: 720; }
h2 { margin-bottom: 1.35rem; font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 720; }
h3 { margin-bottom: .75rem; font-size: 1.35rem; }
.lead { max-width: 740px; color: var(--ink-soft); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.section-dark .lead { color: #cbd4e6; }
.lede-narrow { max-width: 630px; }
.button-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .82rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: .95rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--blue-deep); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: #eaf0ff; }
.button-outline { border-color: rgba(255,255,255,.28); background: transparent; }
.button-outline:hover { border-color: var(--cyan); background: rgba(255,255,255,.06); }
.text-link { color: var(--blue); font-weight: 750; text-underline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(10,22,48,.93);
  color: var(--white);
  backdrop-filter: blur(14px);
}
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; color: var(--white); text-decoration: none; }
.brand-mark {
  position: relative;
  width: 39px;
  height: 39px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--blue);
  transform: rotate(-6deg);
}
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 6px;
  border-radius: 4px;
  background: var(--white);
  transform: rotate(-36deg);
}
.brand-mark::before { left: 7px; top: 11px; }
.brand-mark::after { right: 5px; bottom: 10px; background: var(--cyan); }
.brand-type { display: grid; line-height: 1; }
.brand-type strong { font-size: 1.1rem; letter-spacing: .13em; }
.brand-type span { margin-top: .27rem; color: #aab7d2; font-size: .66rem; font-weight: 700; letter-spacing: .18em; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a { color: #d7deed; font-size: .92rem; font-weight: 650; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links .button { color: var(--white); }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: transparent;
  color: white;
}

.hero { position: relative; overflow: hidden; padding: 8rem 0 5rem; background: var(--ink); color: var(--white); }
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  top: -160px;
  border: 1px solid rgba(114,220,255,.28);
  border-radius: 50%;
  box-shadow: inset 0 0 0 75px rgba(49,86,245,.08), inset 0 0 0 150px rgba(49,86,245,.05);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); gap: 4rem; align-items: end; }
.hero h1 { max-width: 980px; }
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero-copy { max-width: 720px; color: #cbd4e6; font-size: 1.18rem; }
.language-orbit { position: relative; min-height: 390px; }
.language-chip {
  position: absolute;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-weight: 850;
  letter-spacing: .06em;
  backdrop-filter: blur(8px);
}
.language-chip:nth-child(1) { left: 4%; top: 8%; background: var(--blue); }
.language-chip:nth-child(2) { right: 3%; top: 25%; width: 116px; height: 116px; }
.language-chip:nth-child(3) { left: 24%; top: 41%; width: 104px; height: 104px; color: var(--ink); background: var(--cyan); }
.language-chip:nth-child(4) { right: 17%; bottom: 3%; width: 72px; height: 72px; background: var(--coral); }
.language-chip:nth-child(5) { left: 0; bottom: 2%; width: 64px; height: 64px; }
.proof-bar { border-top: 1px solid rgba(255,255,255,.12); background: var(--ink); color: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { padding: 1.6rem 2rem; border-right: 1px solid rgba(255,255,255,.12); }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; font-size: 1.05rem; }
.proof-item span { color: #9facbf; font-size: .9rem; }

.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.card {
  position: relative;
  min-height: 270px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(20,38,85,.06);
}
.card-number { margin-bottom: 4rem; color: var(--blue); font-size: .8rem; font-weight: 850; letter-spacing: .12em; }
.card p { color: var(--muted); }
.card::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  right: -34px;
  top: -34px;
  border: 15px solid rgba(49,86,245,.08);
  border-radius: 50%;
}
.card-accent { background: var(--blue); color: var(--white); }
.card-accent p, .card-accent .card-number { color: #dce3ff; }
.card-accent::after { border-color: rgba(255,255,255,.14); }

.language-panel { position: relative; overflow: hidden; border-radius: 32px; background: var(--white); box-shadow: var(--shadow); }
.language-panel-header { padding: 3rem; border-bottom: 1px solid var(--line); }
.language-groups { display: grid; grid-template-columns: repeat(2, 1fr); }
.language-group { padding: 3rem; }
.language-group + .language-group { border-left: 1px solid var(--line); }
.language-group h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; }
.language-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.language-list span { padding: .45rem .75rem; border-radius: 999px; background: #eef2ff; color: #2a448e; font-size: .88rem; font-weight: 700; }
.language-list.secondary span { background: #f1f3f7; color: #4d5a73; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 4rem; border-top: 1px solid rgba(255,255,255,.2); }
.step { position: relative; padding: 2rem 2rem 0 0; }
.step::before { content: ""; position: absolute; width: 10px; height: 10px; top: -5px; left: 0; border-radius: 50%; background: var(--cyan); }
.step small { color: var(--cyan); font-weight: 850; letter-spacing: .1em; }
.step h3 { margin-top: 2rem; }
.step p { color: #aeb9cd; font-size: .95rem; }

.founder-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
.founder { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.founder-role { color: var(--blue); font-size: .83rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.founder p { margin-bottom: 0; color: var(--muted); }

.cta-block { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6rem); border-radius: 32px; background: var(--blue); color: var(--white); }
.cta-block::after { content: ""; position: absolute; width: 360px; height: 360px; right: -150px; bottom: -190px; border: 55px solid rgba(255,255,255,.1); border-radius: 50%; }
.cta-block h2 { position: relative; max-width: 850px; z-index: 1; }
.cta-block p { position: relative; max-width: 650px; color: #dfe5ff; z-index: 1; }
.cta-block .button-row { position: relative; z-index: 1; }

.page-hero { padding: 7rem 0 5rem; background: var(--ink); color: var(--white); }
.page-hero h1 { max-width: 1000px; font-size: clamp(3rem, 6vw, 5.8rem); }
.page-hero .lead { color: #cbd4e6; }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 90px .8fr 1.2fr; gap: 2rem; padding: 3.25rem 0; border-bottom: 1px solid var(--line); }
.service-row > span { color: var(--blue); font-size: .82rem; font-weight: 850; letter-spacing: .12em; }
.service-row h2 { font-size: clamp(1.7rem, 3vw, 2.8rem); }
.service-row p { color: var(--muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.tag { padding: .35rem .65rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: .8rem; font-weight: 700; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 9vw, 9rem); }
.story-grid p { color: var(--ink-soft); }
.principles { display: grid; gap: 1rem; }
.principle { padding: 1.5rem 0; border-top: 1px solid var(--line); }
.principle strong { display: block; margin-bottom: .4rem; font-size: 1.1rem; }
.principle p { margin: 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 8vw, 8rem); }
.contact-details { display: grid; gap: 1.5rem; }
.contact-item { padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.contact-item small { display: block; color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-item a { font-weight: 750; text-underline-offset: 4px; }
.form { padding: clamp(1.5rem, 4vw, 3rem); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 750; }
.field-optional { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cad1df; border-radius: 12px; background: #fbfcfe; color: var(--ink); padding: .85rem 1rem; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(49,86,245,.18); border-color: var(--blue); }
.form-note { margin: 1rem 0 0; color: var(--muted); font-size: .84rem; }

.site-footer { padding: 4rem 0 2rem; background: #071126; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 3rem; }
.footer-copy { max-width: 390px; margin-top: 1.5rem; color: #9da9c0; font-size: .92rem; }
.footer-links { display: grid; align-content: start; gap: .55rem; }
.footer-links strong { margin-bottom: .5rem; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { color: #b8c2d5; font-size: .9rem; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); color: #8290aa; font-size: .8rem; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .section { padding: 5rem 0; }
  .menu-button { display: inline-grid; place-items: center; }
  .nav-links {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    padding: 1.5rem 1.25rem 2rem;
    align-items: stretch;
    flex-direction: column;
    background: var(--ink);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .6rem 0; font-size: 1.1rem; }
  .hero { padding-top: 6rem; }
  .hero-grid, .split, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .language-orbit { min-height: 250px; max-width: 360px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item, .proof-item:first-child { padding: 1.1rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .proof-item:last-child { border-bottom: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .service-row { grid-template-columns: 55px 1fr; }
  .service-row > div:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 1.5rem), var(--max)); }
  h1 { font-size: clamp(2.75rem, 15vw, 4.3rem); }
  .brand-type span { display: none; }
  .hero-grid { gap: 2rem; }
  .language-orbit { min-height: 220px; }
  .language-chip { transform: scale(.82); }
  .cards, .language-groups, .founder-strip, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .language-group + .language-group { border-left: 0; border-top: 1px solid var(--line); }
  .language-panel-header, .language-group { padding: 2rem; }
  .steps { grid-template-columns: 1fr; }
  .step { padding-top: 1.5rem; }
  .service-row { grid-template-columns: 1fr; gap: .5rem; padding: 2.25rem 0; }
  .service-row > div:last-child { grid-column: 1; }
  .field-full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

/* Refined Dosina palette and positive hero */
:root {
  --ink: #10264c;
  --ink-soft: #405372;
  --blue: #1769e0;
  --blue-deep: #0e4fae;
  --coral: #08a8ad;
  --cyan: #2ccbd0;
  --yellow: #b9f1ed;
  --line: rgba(16,38,76,.12);
}
.brand-mark { background: linear-gradient(145deg,#1769e0,#08a8ad); }
.button, .hero .button-light { background: #10264c; }
.button:hover, .hero .button-light:hover { background: #1769e0; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #1769e0; }
.hero::before { background: radial-gradient(circle at center,rgba(23,105,224,.12),rgba(8,168,173,.045) 48%,transparent 72%); }
.hero h1 em { background: linear-gradient(90deg,#1769e0 6%,#078fa9 52%,#08a8ad 94%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .button-outline { border: 1px solid #cad4e2; color: #10264c; background: #fff; }
.hero .button-outline:hover { border-color: #1769e0; background: #f3f8ff; }
.proof-item:first-child::before { display: block; }
.proof-item:first-child { padding-left: 3.2rem; }
.proof-item::before { width: 12px; height: 12px; border-radius: 50%; background: #08a8ad; transform: none; }
.proof-item:nth-child(2)::before { background: #1769e0; }
.proof-item:nth-child(3)::before { background: #57cfc9; }
.card::before, .service-row::before { background: linear-gradient(90deg,#1769e0,#08a8ad); }
.card-number { background: #eaf3ff; color: #1769e0; }
.card-accent .card-number { color: #1769e0; }
.section-dark { background: #f1f7fc; }
.section-dark .eyebrow, .step small { color: #1769e0; }
.section-dark .text-link { color: #0e649f !important; }
.step::before { background: linear-gradient(145deg,#1769e0,#08a8ad); }
.language-list span { background: #e7f3ff; color: #155cae; }
.language-panel::before { border-color: rgba(8,168,173,.12); }
.cta-block { background: linear-gradient(110deg,#1769e0 0%,#087ebf 52%,#08a8ad 100%); box-shadow: 0 28px 80px rgba(23,105,224,.18); }
.page-hero::after { background: radial-gradient(ellipse,rgba(23,105,224,.12),transparent 70%); }
.contact-item { border-left-color: #08a8ad; }
.form { border-top-color: #1769e0; }
.site-footer { background: #10264c; }

@media (max-width: 900px) {
  .proof-item:first-child { padding-left: 2rem; }
}

/* Editorial concept: typography-led, spacious and image-free */
:root {
  --ink: #190927;
  --ink-soft: #483b55;
  --paper: #ffffff;
  --blue: #7442f6;
  --blue-deep: #5b2bd8;
  --coral: #eb337f;
  --cyan: #9e7cff;
  --yellow: #ffcc62;
  --line: rgba(25,9,39,.12);
}

body { background: #fff; font-family: "Manrope", Arial, sans-serif; }
.container { width: min(calc(100% - 3rem), 1210px); }
.brand-mark { background: linear-gradient(145deg,#7442f6,#eb337f); }
.button { background: #7442f6; }
.button:hover { background: #5b2bd8; }

.hero {
  min-height: 740px;
  display: grid;
  place-items: center;
  padding: 7rem 0 8rem;
  background: #fff;
}
.hero::before {
  width: 760px;
  height: 420px;
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  border: 0;
  background: radial-gradient(circle at center,rgba(137,88,255,.11),rgba(235,51,127,.04) 48%,transparent 72%);
  filter: blur(18px);
  opacity: 1;
  transform: translate(-50%,-48%);
}
.hero-grid { display: block; max-width: 1120px; margin-inline: auto; text-align: center; }
.hero-editorial-copy { position: relative; z-index: 1; }
.hero .eyebrow { justify-content: center; margin-bottom: 1.8rem; padding: .48rem .85rem; border-radius: 999px; background: #f0eaff; color: #6731de; letter-spacing: .04em; text-transform: none; }
.hero .eyebrow::before { display: none; }
.hero h1 { max-width: 1080px; margin-inline: auto; margin-bottom: 1.8rem; font-size: clamp(3.7rem,7.1vw,7rem); line-height: .98; letter-spacing: -.065em; }
.hero h1 em { background: linear-gradient(90deg,#7442f6 8%,#a838d5 48%,#eb337f 92%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero h1 em::after { display: none; }
.hero-copy { max-width: 800px; margin-inline: auto; color: #483b55; font-size: clamp(1.15rem,2vw,1.45rem); line-height: 1.55; }
.hero .button-row { justify-content: center; margin-top: 2.3rem; }
.hero .button-light { background: #7442f6; color: #fff; }
.hero .button-light:hover { background: #5b2bd8; }
.hero .button-outline { border-color: transparent; color: #421c87; background: #f4f0ff; }
.hero .button-outline:hover { border-color: transparent; background: #eae2ff; }

.proof-bar { border-top: 1px solid #e9e2f1; border-bottom: 1px solid #e9e2f1; }
.proof-item { padding-block: 2rem; }
.proof-item::before { background: linear-gradient(145deg,#7442f6,#eb337f); }

.section { padding-block: 8rem; }
.split { gap: clamp(3rem,9vw,9rem); }
.eyebrow { color: #7442f6; }
.card { min-height: 285px; border: 1px solid #e5deeb; border-radius: 20px; background: #fff; box-shadow: none; transform: none !important; }
.card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg,#7442f6,#eb337f); }
.card:nth-child(n) { background: #fff; }
.card-accent { color: var(--ink); }
.card-accent p { color: var(--muted); }
.card-accent .card-number { color: #7442f6; }
.card-number { background: #f2edff; color: #6a32df; }

.section-dark { background: #f6f3fb; color: var(--ink); }
.section-dark .eyebrow { color: #7442f6; }
.section-dark .lead, .step p { color: #665970; }
.section-dark .text-link { color: #632fd5 !important; }
.steps { border-top-color: #d9cfe3; }
.step::before { background: linear-gradient(145deg,#7442f6,#eb337f); }
.step small { color: #7442f6; }

.language-panel { border: 1px solid #e5deeb; border-radius: 24px; background: linear-gradient(135deg,#fff 0%,#faf8ff 100%); box-shadow: 0 24px 70px rgba(63,28,97,.08); }
.language-panel::before { border-color: rgba(116,66,246,.11); }
.language-list span { background: #eee8ff; color: #5429b7; }
.language-list.secondary span { background: #f3eff6; color: #55475e; }
.cta-block { background: linear-gradient(110deg,#7442f6 0%,#a33ad9 52%,#eb337f 100%); box-shadow: 0 28px 80px rgba(116,66,246,.2); }

.page-hero { padding: 8rem 0 7rem; background: #fff; text-align: center; }
.page-hero::after { width: 600px; height: 270px; right: 50%; bottom: -160px; border: 0; background: radial-gradient(ellipse,rgba(116,66,246,.12),transparent 70%); transform: translateX(50%); }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1, .page-hero .lead { max-width: 960px; margin-inline: auto; }
.service-row { border: 1px solid #e5deeb; border-radius: 20px; background: #fff !important; }
.service-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; border-radius: 20px 0 0 20px; background: linear-gradient(#7442f6,#eb337f); }
.service-row { position: relative; }
.principle:nth-child(n), .founder:nth-child(n), .contact-item:nth-child(n) { background: #faf8fd; transform: none; }
.principle { border: 1px solid #e7e0ec; border-radius: 16px; }
.founder { border-color: #e5deeb; border-radius: 20px; }
.contact-item { border-left-color: #7442f6; }
.form { border-color: #e5deeb; border-top-color: #7442f6; box-shadow: 0 24px 70px rgba(63,28,97,.08); }
.site-footer { background: #210b31; }

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 6rem 0; }
  .nav-links { background: #fff; }
  .section { padding-block: 6rem; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 1.5rem),1210px); }
  .hero { padding: 4.8rem 0 5rem; }
  .hero h1 { font-size: clamp(3rem,15vw,4.7rem); }
  .section { padding-block: 4.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Bright editorial direction — September 2026 */
:root {
  --ink: #17234a;
  --ink-soft: #384463;
  --paper: #fbfcff;
  --blue: #3158f6;
  --blue-deep: #2344d1;
  --cyan: #4fd4ff;
  --coral: #ff6759;
  --yellow: #ffc84a;
}

.site-header {
  border-bottom-color: rgba(23,35,74,.09);
  background: rgba(255,255,255,.92);
  color: var(--ink);
}
.brand { color: var(--ink); }
.brand-mark { background: linear-gradient(145deg, var(--coral), var(--blue)); }
.brand-type span { color: #6d7892; }
.nav-links a { color: #46516d; font-weight: 700; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue); }
.menu-button { color: var(--ink); border-color: rgba(23,35,74,.18); }

.hero {
  padding: 6.5rem 0 6rem;
  background: linear-gradient(135deg, #fff 0%, #f4f9ff 58%, #eef1ff 100%);
  color: var(--ink);
}
.hero::before {
  width: 430px;
  height: 430px;
  left: -230px;
  right: auto;
  top: auto;
  bottom: -220px;
  border: 0;
  background: var(--yellow);
  box-shadow: none;
  opacity: .4;
}
.hero-grid { grid-template-columns: minmax(0,.92fr) minmax(380px,1.08fr); gap: clamp(3rem,7vw,7rem); align-items: center; }
.hero h1 { max-width: 760px; font-size: clamp(3.3rem,6vw,6.1rem); }
.hero h1 em { position: relative; color: var(--coral); }
.hero h1 em::after { content: ""; position: absolute; left: 2%; right: 0; bottom: -.04em; height: .09em; border-radius: 999px; background: var(--yellow); transform: rotate(-2deg); }
.hero .eyebrow { color: var(--blue); }
.hero-copy { max-width: 660px; color: var(--ink-soft); }
.hero .button-outline { border-color: rgba(23,35,74,.2); color: var(--ink); }
.hero .button-outline:hover { border-color: var(--blue); background: #eef2ff; }
.hero-art { position: relative; margin: 0; }
.hero-art::before { content: ""; position: absolute; inset: 9% -5% -7% 8%; border-radius: 42px; background: var(--coral); transform: rotate(4deg); }
.hero-art img { position: relative; width: 100%; aspect-ratio: 1.12; object-fit: cover; object-position: 58% center; border: 10px solid #fff; border-radius: 38px; box-shadow: 0 30px 90px rgba(45,70,150,.24); transform: rotate(-2deg); }
.art-sticker { position: absolute; z-index: 2; display: grid; width: 116px; height: 116px; right: -32px; top: -28px; place-items: center; border: 8px solid #fff; border-radius: 50%; background: var(--yellow); color: var(--ink); font-size: .82rem; font-weight: 900; letter-spacing: .08em; line-height: 1.15; text-align: center; text-transform: uppercase; transform: rotate(8deg); }
.art-caption { position: absolute; z-index: 2; left: -26px; bottom: 28px; padding: .8rem 1.05rem; border-radius: 14px; background: var(--ink); color: #fff; font-size: .82rem; font-weight: 800; letter-spacing: .04em; box-shadow: 0 16px 34px rgba(23,35,74,.2); transform: rotate(2deg); }

.proof-bar { border-color: rgba(23,35,74,.08); background: #fff; color: var(--ink); }
.proof-item { position: relative; padding: 1.7rem 2rem 1.7rem 3.2rem; border-right-color: rgba(23,35,74,.1); }
.proof-item::before { content: ""; position: absolute; left: 1.2rem; top: 2.1rem; width: 12px; height: 12px; border-radius: 4px; background: var(--coral); transform: rotate(18deg); }
.proof-item:nth-child(2)::before { background: var(--blue); border-radius: 50%; }
.proof-item:nth-child(3)::before { background: var(--yellow); transform: rotate(45deg); }
.proof-item:first-child::before { display: none; }
.proof-item span { color: #6b7690; }

.card { border-radius: 28px; }
.card-number { display: inline-flex; padding: .35rem .62rem; border-radius: 999px; background: #edf1ff; }
.card:nth-child(1) { transform: rotate(-1deg); background: #fff7e3; }
.card:nth-child(2) { transform: translateY(28px) rotate(1deg); }
.card:nth-child(3) { background: #effaff; }
.card:nth-child(4) { transform: translateY(28px) rotate(-1deg); background: #fff1ef; }
.card-accent { background: var(--blue); }

.section-dark { background: linear-gradient(135deg,#3158f6 0%,#4b6ffb 55%,#6657ed 100%); }
.section-dark .eyebrow { color: #dff8ff; }
.language-panel { border: 1px solid rgba(49,88,246,.12); border-radius: 36px; background: linear-gradient(145deg,#fff 0%,#f1f8ff 100%); }
.cta-block { border-radius: 36px; background: linear-gradient(135deg,#ff6759 0%,#ff7b69 50%,#ff946e 100%); box-shadow: 0 28px 80px rgba(255,103,89,.24); }
.page-hero { position: relative; overflow: hidden; background: linear-gradient(135deg,#fff 0%,#f0f6ff 60%,#ffeceb 100%); color: var(--ink); }
.page-hero::after { content: ""; position: absolute; width: 240px; height: 240px; right: 7%; bottom: -145px; border: 34px solid var(--yellow); border-radius: 50%; opacity: .75; }
.page-hero .lead { color: var(--ink-soft); }
.service-list { display: grid; gap: 1rem; border-top: 0; }
.service-row { padding: 2.6rem; border: 0; border-radius: 26px; background: #f2f6ff; }
.service-row:nth-child(2) { background: #fff4e0; }
.service-row:nth-child(3) { background: #eefbff; }
.service-row:nth-child(4) { background: #fff0ee; }
.service-row > span { align-self: start; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: #fff; box-shadow: 0 8px 20px rgba(23,35,74,.08); }
.principle { padding: 1.45rem 1.6rem; border: 0; border-radius: 20px; background: #f0f5ff; }
.principle:nth-child(2) { background: #fff5df; }
.principle:nth-child(3) { background: #eefbff; }
.principle:nth-child(4) { background: #fff0ee; }
.founder:first-child { background: #fff6e2; transform: rotate(-.5deg); }
.founder:last-child { background: #eef7ff; transform: rotate(.5deg); }
.contact-item { padding: 1.2rem 1.3rem; border: 0; border-left: 5px solid var(--coral); border-radius: 0 16px 16px 0; background: #fff4f2; }
.contact-item:nth-child(3) { border-left-color: var(--blue); background: #eff3ff; }
.contact-item:nth-child(4) { border-left-color: var(--yellow); background: #fff8e7; }
.form { border: 1px solid rgba(49,88,246,.14); border-top: 8px solid var(--blue); }
.site-footer { background: #24366e; }
.site-footer .brand { color: #fff; }

.language-stage {
  position: relative;
  min-height: 550px;
  isolation: isolate;
}
.language-stage::before {
  content: "";
  position: absolute;
  inset: 10% 4% 4% 7%;
  z-index: -2;
  border-radius: 48px;
  background: var(--coral);
  transform: rotate(4deg);
}
.language-stage::after {
  content: "";
  position: absolute;
  inset: 4% 9% 9% 2%;
  z-index: -1;
  border: 2px solid rgba(49,88,246,.18);
  border-radius: 48px;
  background: #f7faff;
  box-shadow: 0 30px 90px rgba(45,70,150,.18);
  transform: rotate(-2deg);
}
.stage-message {
  position: absolute;
  z-index: 2;
  left: 21%;
  top: 18%;
  width: 58%;
  padding: 2.4rem;
  border: 2px solid var(--ink);
  border-radius: 30px;
  background: #fff;
  box-shadow: 13px 13px 0 var(--yellow);
  transform: rotate(1deg);
}
.stage-message small { display: block; margin-bottom: 1rem; color: var(--blue); font-size: .75rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.stage-message strong { display: block; color: var(--ink); font-size: clamp(2.5rem,5vw,4.7rem); line-height: .83; letter-spacing: -.06em; }
.stage-message span { display: block; margin-top: 1.25rem; color: var(--ink-soft); font-size: .85rem; font-weight: 750; }
.stage-card {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 138px;
  padding: 1rem 1.1rem;
  border: 3px solid #fff;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 18px 34px rgba(23,35,74,.18);
}
.stage-card small { font-size: .68rem; font-weight: 800; letter-spacing: .09em; opacity: .82; text-transform: uppercase; }
.stage-card strong { margin: .15rem 0; font-size: 2rem; line-height: 1; letter-spacing: -.04em; }
.stage-card span { justify-self: end; font-size: .72rem; font-weight: 900; }
.stage-no { left: 0; top: 2%; background: var(--blue); transform: rotate(-7deg); }
.stage-sv { right: 0; top: 4%; background: var(--coral); transform: rotate(7deg); }
.stage-da { left: 1%; bottom: 4%; background: #24366e; transform: rotate(5deg); }
.stage-fi { right: 1%; bottom: 1%; background: #00a9d5; transform: rotate(-6deg); }

@media (max-width: 900px) {
  .nav-links { background: #fff; box-shadow: 0 20px 35px rgba(23,35,74,.12); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 650px; margin-top: 1rem; }
  .language-stage { max-width: 650px; width: 100%; margin: 1rem auto 0; }
  .proof-item, .proof-item:first-child { padding: 1.1rem 0 1.1rem 2rem; border-bottom-color: rgba(23,35,74,.1); }
  .proof-item:first-child::before { display: block; }
  .proof-item::before { left: .25rem; top: 1.5rem; }
}

@media (max-width: 620px) {
  .card:nth-child(n) { transform: none; }
  .hero-art img { border-width: 6px; border-radius: 26px; }
  .hero-art::before { border-radius: 28px; }
  .art-sticker { width: 92px; height: 92px; right: -6px; top: -30px; border-width: 6px; font-size: .7rem; }
  .art-caption { left: -4px; bottom: 14px; }
  .language-stage { min-height: 430px; }
  .language-stage::before, .language-stage::after { border-radius: 32px; }
  .stage-message { left: 15%; top: 19%; width: 70%; padding: 1.7rem; border-radius: 24px; box-shadow: 9px 9px 0 var(--yellow); }
  .stage-message strong { font-size: clamp(2.5rem,13vw,3.8rem); }
  .stage-card { min-width: 104px; padding: .75rem .8rem; border-radius: 16px; }
  .stage-card strong { font-size: 1.55rem; }
}

/* Final editorial palette — navy, cobalt, teal and soft gold */
:root {
  --ink: #10264c;
  --ink-soft: #425676;
  --paper: #fbfcff;
  --white: #ffffff;
  --blue: #1769e0;
  --blue-deep: #0e4fae;
  --cyan: #20bfc1;
  --coral: #08a8ad;
  --yellow: #f3b83f;
  --line: rgba(16,38,76,.12);
  --muted: #687894;
}

body { color: var(--ink); background: var(--paper); }
.site-header { border-bottom-color: rgba(16,38,76,.09); background: rgba(255,255,255,.94); color: var(--ink); }
.brand { color: var(--ink); }
.brand-mark { background: linear-gradient(145deg,var(--blue),var(--coral)); }
.brand-type span { color: #71809b; }
.nav-links a { color: #465876; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue); }
.nav-links .button, .button { background: var(--ink); color: #fff; }
.nav-links .button:hover, .button:hover { background: var(--blue); }
.menu-button { border-color: rgba(16,38,76,.2); color: var(--ink); }

.hero { background: linear-gradient(135deg,#fff 0%,#f3f8ff 56%,#edfafa 100%); color: var(--ink); }
.hero::before { background: radial-gradient(circle at center,rgba(23,105,224,.11),rgba(8,168,173,.045) 50%,transparent 72%); }
.hero h1 em { display: inline-block; padding-right: .09em; margin-right: -.09em; background: linear-gradient(90deg,var(--blue) 4%,#087fba 50%,var(--coral) 96%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero h1 em::after { display: none; }
.hero-copy { color: var(--ink-soft); }
.hero .button-light { background: var(--ink); color: #fff; }
.hero .button-light:hover { background: var(--blue); }
.hero .button-outline { border: 1px solid #c7d3e2; background: #fff; color: var(--ink); }
.hero .button-outline:hover { border-color: var(--blue); background: #f2f7ff; }

.proof-bar { border-color: rgba(16,38,76,.09); background: #fff; color: var(--ink); }
.proof-item, .proof-item:first-child { position: relative; padding: 1.7rem 2rem 1.7rem 3.2rem; border-right-color: rgba(16,38,76,.1); }
.proof-item::before, .proof-item:first-child::before { content: ""; position: absolute; display: block; left: 1.2rem; top: 2.08rem; width: 12px; height: 12px; border-radius: 50%; background: var(--coral); transform: none; }
.proof-item:nth-child(2)::before { background: var(--blue); }
.proof-item:nth-child(3)::before { background: var(--yellow); transform: none; }
.proof-item span { color: #6b7891; }

.eyebrow, .section-dark .eyebrow, .step small { color: var(--blue); }
.card, .card:nth-child(n), .card-accent { border: 1px solid #dfe7f1; background: #fff; color: var(--ink); transform: none !important; }
.card::before { background: linear-gradient(90deg,var(--blue),var(--coral)); }
.card-number, .card-accent .card-number { background: #eaf3ff; color: var(--blue); }
.card p, .card-accent p { color: var(--muted); }

.section-dark { background: #eff6fa; color: var(--ink); }
.section-dark .lead, .step p { color: var(--ink-soft); }
.section-dark .text-link { color: #0d639c !important; }
.steps { border-top-color: rgba(16,38,76,.18); }
.step::before { background: linear-gradient(145deg,var(--blue),var(--coral)); }

.language-panel { border-color: rgba(23,105,224,.13); background: linear-gradient(145deg,#fff 0%,#f0f8fb 100%); box-shadow: 0 24px 70px rgba(16,38,76,.09); }
.language-list span { background: #e7f3ff; color: #155cae; }
.language-list.secondary span { background: #e9f7f5; color: #226c70; }
.cta-block { background: linear-gradient(110deg,var(--blue) 0%,#087ebf 50%,var(--coral) 100%); box-shadow: 0 28px 80px rgba(23,105,224,.18); }
.cta-block .eyebrow { color: #ddfbff; }
.cta-block .button-light { background: #fff; color: var(--ink); }
.cta-block .button-light:hover { background: #eff9fb; }

.page-hero { background: linear-gradient(135deg,#fff 0%,#f2f7ff 58%,#ebf9f8 100%); color: var(--ink); }
.page-hero::after { border-color: rgba(8,168,173,.22); background: transparent; }
.page-hero .lead { color: var(--ink-soft); }
.service-row, .service-row:nth-child(n) { border: 1px solid #dfe7f1; background: #fff !important; }
.service-row::before { background: linear-gradient(var(--blue),var(--coral)); }
.service-row > span { color: var(--blue); }
.principle:nth-child(n), .founder:nth-child(n) { background: #f1f7fc; transform: none; }
.principle:nth-child(even), .founder:last-child { background: #edf8f7; }
.about-story .story-grid { align-items: start; }
.about-story-copy { max-width: 760px; }
.about-story-copy p:first-child { margin-top: 0; }
.about-section-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: 3.5rem;
}
.about-section-head .lead { margin-bottom: .35rem; }
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.about-team-card {
  position: relative;
  min-height: 230px;
  padding: 2.2rem;
  border: 1px solid rgba(16,38,76,.1);
  border-radius: 22px;
  background: #fff;
}
.about-team-card h3 { margin: 1.25rem 0 .75rem; font-size: clamp(1.25rem, 2vw, 1.65rem); }
.about-team-card p { margin: 0; color: var(--ink-soft); }
.about-dot { display: block; width: 12px; height: 12px; border-radius: 50%; }
.about-dot-blue { background: var(--blue); }
.about-dot-teal { background: var(--coral); }
.about-dot-gold { background: var(--yellow); }
.about-dot-navy { background: var(--ink); }
.about-experience .story-grid { align-items: center; }
.experience-tags { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }
.experience-tags span {
  padding: .75rem 1rem;
  border: 1px solid rgba(23,105,224,.16);
  border-radius: 999px;
  background: #f1f7fc;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 750;
}
.contact-item:nth-child(n) { border-left-color: var(--coral); background: #eef9f8; }
.contact-item:nth-child(3) { border-left-color: var(--blue); background: #eff5ff; }
.contact-item:nth-child(4) { border-left-color: var(--yellow); background: #fff8e8; }
.form { border-color: #dfe7f1; border-top-color: var(--blue); box-shadow: 0 24px 70px rgba(16,38,76,.09); }
.field input:focus, .field select:focus, .field textarea:focus { outline-color: rgba(23,105,224,.18); border-color: var(--blue); }
.site-footer { background: var(--ink); }
.site-footer .brand { color: #fff; }

@media (max-width: 900px) {
  .nav-links { background: #fff; }
  .proof-item, .proof-item:first-child { padding: 1.1rem 0 1.1rem 2rem; border-right: 0; border-bottom-color: rgba(16,38,76,.1); }
  .proof-item::before, .proof-item:first-child::before { left: .25rem; top: 1.48rem; }
  .about-section-head, .about-team-grid { grid-template-columns: 1fr; }
  .about-section-head { gap: 1.5rem; margin-bottom: 2.5rem; }
  .about-team-card { min-height: 0; }
}

/* Editorial capability list */
.capability-section .split { align-items: center; }
.home-how .split,
.services-overview .split { align-items: center; }
@media (min-width: 1200px) {
  .capability-section .card h3 { white-space: nowrap; }
}
.services-overview .steps {
  gap: clamp(1.5rem, 3vw, 3.5rem);
  border-top: 0;
}
.services-overview .step { padding: 0 0 0 1.5rem; }
.services-overview .step::before {
  top: .45rem;
  width: 11px;
  height: 11px;
}
.services-overview .step:nth-child(1)::before { background: var(--blue); }
.services-overview .step:nth-child(2)::before { background: var(--coral); }
.services-overview .step:nth-child(3)::before { background: var(--yellow); }
.services-overview .step:nth-child(4)::before { background: var(--ink); }
.services-overview .step h3 { margin-top: 0; }
.services-setup .split { align-items: center; }
.service-context { background: #fff; }
.service-context-head {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: 3.5rem;
}
.service-context-head .lead { margin-bottom: .35rem; }
.service-context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.context-card { padding: 2.25rem 2rem 0 0; }
.context-card + .context-card {
  padding-left: 2rem;
  border-left: 1px solid var(--line);
}
.context-card h3 { color: var(--ink); font-size: 1.45rem; }
.context-card p { color: var(--muted); }
.context-card:nth-child(1) h3 { color: var(--blue); }
.context-card:nth-child(2) h3 { color: var(--coral); }
.context-card:nth-child(3) h3 { color: #9a6a00; }
@media (max-width: 900px) {
  .service-context-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-context-grid { grid-template-columns: 1fr; }
  .context-card { padding: 2rem 0; }
  .context-card + .context-card { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
}
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.card,
.card:nth-child(n),
.card-accent {
  display: grid;
  grid-template-columns: minmax(210px,.85fr) minmax(300px,1.15fr);
  gap: 2rem;
  align-items: center;
  min-height: 0;
  padding: 2rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.card::before,
.card::after { display: none; }
.card h3 {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0;
  color: var(--blue);
  font-size: 1.18rem;
  line-height: 1.3;
  transform: translateY(4px);
}
.card h3::before {
  content: "";
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue);
}
.card:nth-child(2) h3 { color: var(--coral); }
.card:nth-child(2) h3::before { background: var(--coral); }
.card:nth-child(3) h3 { color: #a46e05; }
.card:nth-child(3) h3::before { background: var(--yellow); }
.card:nth-child(4) h3 { color: var(--ink); }
.card:nth-child(4) h3::before { background: var(--ink); }
.card p,
.card-accent p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

@media (max-width: 620px) {
  .card,
  .card:nth-child(n),
  .card-accent {
    grid-template-columns: 1fr;
    gap: .65rem;
    padding: 1.55rem 0;
  }
  .card h3 { transform: none; }
}
