/* ===========================================================
   gnite digital — shared styles
   Palette, layout and components. No framework, no build step.
   =========================================================== */

:root {
  --navy:        #101d35;
  --ink:         #14233f;
  --muted:       #5a6577;
  --bg:          #f7f8fa;
  --bg-alt:      #eef3fb;
  --line:        #e6e9ef;
  --line-alt:    #dbe4f2;
  --dot:         #3dd8e8;   /* accent dot */
  --brand:       #34b9de;   /* "digital" blue */
  --brand-hover: #4bc7e8;
  --wa:          #25d366;
  --wa-hover:    #2ee06f;
  --link:        #1f5fbf;

  --font-body: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: 'Jost', var(--font-body);

  --maxw: 1128px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

img { display: block; }

/* Centered content column (LinkedIn-style: wide use, capped, wider on mobile) */
.wrap {
  width: 90%;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (max-width: 900px) { .wrap { width: 92%; } }
@media (max-width: 600px) { .wrap { width: 88%; } }

/* Page shell keeps the footer at the bottom on short pages */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: relative;
  overflow: hidden;
  padding: 26px 0;
  background: var(--navy);
  color: #fff;
}
.site-header::before {
  content: "";
  position: absolute;
  top: -160px; right: -90px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,147,224,.4), rgba(31,147,224,0) 68%);
  pointer-events: none;
}
.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__logo img { height: 60px; width: auto; }
.nav__right {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
  font-size: 14.5px;
  font-weight: 500;
}
.lang-switch { color: #8ea6c6; letter-spacing: .04em; }
.lang-switch a:hover { color: #fff; }
.lang-switch .is-active { color: #fff; font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .15s ease;
}
.btn--contact {
  padding: 11px 22px;
  background: var(--brand);
  color: var(--navy);
}
.btn--contact:hover { background: var(--brand-hover); }

/* ---------- Hero ---------- */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(40px, 6vw, 72px) 0;
}
.hero__title {
  display: inline-block;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
}
.hero__lead {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.68;
  color: var(--muted);
  margin: 24px auto 0;
}

/* dotted-i accent (matches the logo) */
.i-dot { position: relative; display: inline-block; }
.i-dot > span {
  position: absolute;
  left: 50%; top: .04em;
  width: .15em; height: .15em;
  border-radius: 50%;
  background: var(--dot);
  transform: translate(-50%, -100%);
}

/* ---------- Contact ---------- */
.contact {
  padding: clamp(44px, 6vw, 72px) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line-alt);
}
.contact__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
}
.contact p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--muted);
  margin: 14px 0 0;
}
.contact p + p { margin-top: 20px; }
.contact__card { margin-top: 22px; font-size: 15px; }
.contact__card .name { font-weight: 600; }
.contact__card a { color: var(--link); font-weight: 500; }
.contact__card a:hover { color: var(--brand); }

.btn--whatsapp {
  margin-top: 28px;
  padding: 15px 26px;
  background: var(--wa);
  color: #0b3d1f;
  font-size: 16px;
  box-shadow: 0 14px 30px -12px rgba(37,211,102,.7);
}
.btn--whatsapp:hover { background: var(--wa-hover); }
.btn--whatsapp svg { fill: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: auto;
  padding: clamp(28px, 4vw, 40px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.site-footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.brand-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.brand-mark img { height: 44px; width: auto; }
.brand-mark span {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8794a5;
  font-weight: 500;
}
.footer-dot {
  width: 35px; height: 35px;
  border-radius: 50%;
  background: var(--dot);
  box-shadow: 0 10px 22px -8px rgba(31,147,224,.6);
}
