/* ===================================================================
   MICROSOFT 365 SERVICES — BASE CSS
   Design system: Aurora Acrylic
   =================================================================== */

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

:root {
  /* ---- Base surfaces ---- */
  --bg:            #EEF3FA;
  --paper:         #FFFFFF;
  --ink:           #14213D;
  --ink-soft:      #55627C;
  --ink-faint:     #8894AA;
  --line:          rgba(20,33,61,0.09);

  /* ---- Fluent blue family ---- */
  --blue:          #0F6CBD;
  --blue-deep:     #0A4C87;
  --blue-ink:      #063259;

  /* ---- Aurora wash hues ---- */
  --aurora-blue:   #4FA6FF;
  --aurora-teal:   #29C6C6;
  --aurora-violet: #8B7CF0;

  /* ---- Microsoft-style tile colors ---- */
  --tile-red:      #F25022;
  --tile-green:    #7FBA00;
  --tile-blue:     #00A4EF;
  --tile-yellow:   #FFB900;

  /* ---- Dark acrylic ---- */
  --navy:          #0B1830;
  --navy-2:        #102544;
  --navy-line:     rgba(255,255,255,0.12);
  --navy-ink:      #C4D2E8;

  --good:          #107C10;

  /* ---- Type ---- */
  --font-display:  'Manrope', 'Segoe UI', sans-serif;
  --font-body:     'Inter', 'Segoe UI', sans-serif;

  /* ---- Shape ---- */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --glass-blur: blur(18px);
  --shadow-soft: 0 1px 2px rgba(20,33,61,0.04), 0 16px 40px -18px rgba(20,33,61,0.18);
  --shadow-lift: 0 6px 12px rgba(20,33,61,0.06), 0 30px 60px -24px rgba(20,33,61,0.24);
  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.14;
  margin: 0 0 .6rem;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.55rem);
}

h3 {
  font-size: 1.18rem;
  font-weight: 700;
}

p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 1rem;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: 1180px;
}

/* -------------------------------------------------
   BRAND MARK
-------------------------------------------------- */

.brand-mark {
  display: inline-grid;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: repeat(2,1fr);
  gap: 3px;
  width: 20px;
  height: 20px;
  flex: none;
  margin-right: 8px;
}

.brand-mark span {
  border-radius: 2px;
}

.brand-mark span:nth-child(1) {
  background: var(--tile-red);
}

.brand-mark span:nth-child(2) {
  background: var(--tile-green);
}

.brand-mark span:nth-child(3) {
  background: var(--tile-blue);
}

.brand-mark span:nth-child(4) {
  background: var(--tile-yellow);
}

.brand-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--ink);
}

.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .06em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-top: -2px;
}

/* -------------------------------------------------
   SECTION BADGE
-------------------------------------------------- */

.section-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--blue-ink);
  background: rgba(15,108,189,0.09);
  border: 1px solid rgba(15,108,189,0.18);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-badge.light-badge {
  color: #E4EEFB;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 3.2rem;
}

.section-heading p {
  font-size: 1.05rem;
}

.section {
  padding: 100px 0;
  position: relative;
}
