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

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

:root {
  /* Core palette */
  --navy: #0a1628;
  --navy-2: #0f1f3d;
  --navy-3: #162849;
  --navy-4: #1e3460;

  --paper: #f7f5f0;
  --paper-2: #ede9e1;
  --paper-3: #e0dbd0;

  --ink: #0a1628;
  --ink-2: #3d4f6a;
  --ink-3: #7a8fa8;
  --ink-4: #a8b8cc;

  --amber: #d4820a;
  --amber-light: #f5a623;
  --amber-pale: #fef3db;

  --teal: #0d7c6e;
  --teal-light: #12a090;
  --teal-pale: #e0f7f4;

  --rule: rgba(10, 22, 40, 0.1);
  --rule-2: rgba(10, 22, 40, 0.18);

  /* Typography */
  --heading: 'Manrope', sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --nav-h: 68px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: var(--heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 0.95rem;
  font-weight: 400;
}

em {
  font-style: italic;
}

/* ── PROGRESS BAR ── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s, background 0.3s;
}

.nav.scrolled {
  box-shadow: 0 4px 32px rgba(10, 22, 40, 0.08);
  background: rgba(247, 245, 240, 0.97);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}

.nav-logo:hover .nav-logo-mark {
  transform: rotate(15deg) scale(1.06);
  background: var(--navy-4);
}

.nav-logo-mark svg {
  width: 15px;
  height: 15px;
  fill: var(--paper);
}

.nav-wordmark {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--navy);
  letter-spacing: -0.03em;
  font-weight: 700;
}

.nav-wordmark span {
  color: var(--amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--navy);
  background: rgba(10, 22, 40, 0.05);
}

.nav-links a.active {
  color: var(--navy);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--amber);
  border-radius: 1px;
}

.nav-links .has-dropdown {
  position: relative;
}

.nav-links .has-dropdown>a::after {
  content: none;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  /* removes hover gap */
  left: 0;
  background: var(--paper);
  border: 1px solid var(--rule-2);
  border-radius: 10px;
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);

  transition: opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;

  z-index: 100;
  overflow: hidden;
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 10px;
}


.nav-dropdown a {
  display: block;
  padding: 11px 18px;
  color: var(--ink-2);
  font-size: 0.84rem;
  border-radius: 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.15s, color 0.15s, padding-left 0.2s;
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover {
  background: var(--paper-2);
  color: var(--navy);
  padding-left: 24px;
}

.nav-dropdown a::after {
  display: none;
}

.nav-cta {
  margin-left: 8px;
  background: var(--navy) !important;
  color: var(--paper) !important;
  padding: 9px 20px !important;
  border-radius: 7px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.22) !important;
  background: var(--navy-3) !important;
}

.nav-cta::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--rule-2);
  background: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  border-radius: 7px;
  border: none;
  font-family: var(--heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-110%) skewX(-12deg);
  transition: transform 0.5s;
}

.btn:hover::after {
  transform: translateX(200%) skewX(-12deg);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--navy);
  color: var(--paper);
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 10px 32px rgba(10, 22, 40, 0.26);
  background: var(--navy-3);
}

.btn-amber {
  background: var(--amber);
  color: white;
  box-shadow: 0 4px 16px rgba(212, 130, 10, 0.28);
}

.btn-amber:hover {
  box-shadow: 0 10px 32px rgba(212, 130, 10, 0.36);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--rule-2);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(10, 22, 40, 0.04);
  box-shadow: none;
}

.btn-ghost-white {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

/* ═══════════════════════════════════════════════════════════
   SECTION LABELS & HEADINGS
═══════════════════════════════════════════════════════════ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--amber);
}

.section-eyebrow.light {
  color: rgba(245, 166, 35, 0.7);
}

.section-eyebrow.light::before {
  background: rgba(245, 166, 35, 0.5);
}

.section-eyebrow.muted {
  color: var(--ink-3);
}

.section-eyebrow.muted::before {
  background: var(--ink-3);
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT CONTAINERS
═══════════════════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 110px 0;
  border-top: 1px solid var(--rule);
}

.section:first-child {
  border-top: none;
}

/* ═══════════════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--navy);
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 48s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 44px;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.t-accent {
  color: var(--amber-light);
  font-weight: 500;
}

.t-teal {
  color: #4dd9cb;
}

.t-green {
  color: #6ee7b7;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════════════════
   CHIP / BADGE
═══════════════════════════════════════════════════════════ */
.chip {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--rule-2);
  color: var(--ink-3);
  background: var(--paper-2);
  letter-spacing: 0.04em;
  transition: all 0.2s;
}

.chip-amber {
  border-color: rgba(212, 130, 10, 0.3);
  color: var(--amber);
  background: var(--amber-pale);
}

.chip-teal {
  border-color: rgba(13, 124, 110, 0.3);
  color: var(--teal);
  background: var(--teal-pale);
}

.chip-navy {
  border-color: var(--navy-4);
  color: white;
  background: var(--navy-3);
}

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-l {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-l.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-r.visible {
  opacity: 1;
  transform: translateX(0);
}

.d1 {
  transition-delay: 0.1s !important
}

.d2 {
  transition-delay: 0.2s !important
}

.d3 {
  transition-delay: 0.3s !important
}

.d4 {
  transition-delay: 0.4s !important
}

.d5 {
  transition-delay: 0.5s !important
}

.d6 {
  transition-delay: 0.6s !important
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.55);
  padding: 72px 5% 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 28px;
}

.footer-brand p {
  font-size: 0.84rem;
  margin-top: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.38);
}

.footer-nav h6 {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 18px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.84rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-nav a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-wordmark {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.03em;
}

.footer-wordmark span {
  color: var(--amber-light);
}

.footer-tagline {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.24);
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL TOP + CHATBOT PLACEHOLDER
═══════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 300;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--rule-2);
  background: var(--paper);
  cursor: pointer;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.08);
}

.scroll-top.show {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.14);
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (INNER PAGES)
═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 64px) 5% 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero h1 {
  color: white;
}

.page-hero h1 em {
  color: rgba(255, 255, 255, 0.35);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

/* Grid overlay for dark sections */
.grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 60%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 60%, black 30%, transparent 100%);
}

.dot-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media(max-width:1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media(max-width:900px) {
  .mobile-toggle {
    display: block;
  }

  /* Slide-in menu from right */
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: 300px;
    height: 100vh;
    flex-direction: column;
    background: var(--paper);
    border-left: 1px solid var(--rule);
    padding: 80px 20px 30px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    align-items: flex-start;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  }

  .nav-links.open {
    right: 0;
  }

  /* Overlay when menu is open */
  body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    pointer-events: none;
  }

  .nav-links li {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--rule);
  }

  .nav-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
    width: 100%;
  }

  /* Dropdown styling for mobile */
  .has-dropdown {
    position: relative;
    flex-direction: column;
  }

  .has-dropdown>a {
    position: relative;
    cursor: pointer;
  }

  .has-dropdown>a i {
    transition: transform 0.2s ease;
  }

  .has-dropdown.active>a i {
    transform: rotate(180deg);
  }

  .nav-dropdown {
    display: none;
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--paper-2);
    margin: 0 0 8px 0;
    border-radius: 8px;
    padding: 8px 0;
    width: 100%;
  }

  .has-dropdown.active .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-dropdown a:last-child {
    border-bottom: none;
  }

  /* Contact Us button styling */
  .nav-cta {
    margin: 24px 0 16px !important;
    border-radius: 30px !important;
    padding: 14px 20px !important;
    width: 100% !important;
    justify-content: center;
    background: var(--amber);
    color: var(--navy) !important;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-cta:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
  }

  /* Fix for body scroll */
  body.menu-open {
    overflow: hidden;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media(max-width:600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

.logo-icon {
  width: 16px;
  height: 16px;
  fill: white;
  stroke: white;
}

.nav-logo-mark,
.footer-logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: #0b1b2b;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  font-weight: 500;
  font-size: 50px;
}

h2 {
  font-weight: 600;
}

h3 {
  font-weight: 600;
}

.home-hero h1 {
  line-height: 1.1;
  letter-spacing: -0.03em;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(10, 22, 40, 0.03), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(10, 22, 40, 0.03), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

/* IAM LIFECYCLE FLOW */

.hero-lifecycle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 22px;
  gap: 10px;
}

.life-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  font-size: .65rem;
  color: rgba(255, 255, 255, .7);
  font-family: var(--mono);
}

.life-step i {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  font-size: .75rem;
  color: white;
}

.life-arrow {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, .1),
      rgba(255, 255, 255, .4),
      rgba(255, 255, 255, .1));
  position: relative;
  overflow: hidden;
}

.life-arrow::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -20%;
  width: 20%;
  height: 6px;
  background: white;
  filter: blur(4px);
  animation: flowAnim 3s linear infinite;
}

@keyframes flowAnim {
  0% {
    left: -20%
  }

  100% {
    left: 120%
  }
}

.hero-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 18px 0 14px 0;
}

.hero-value {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
}

.value-item i {
  color: #f5a623;
  font-size: .8rem;
}

.contact-left {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* left contact info block */
.contact-left-main {
  flex: 1;
  min-width: 260px;
}

/* expectation card */
.contact-expect {
  flex: 1;
  min-width: 260px;
  padding: 24px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 12px;
}

.expect-title {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}

.expect-item {
  display: flex;
  gap: 10px;
  font-size: .86rem;
  color: var(--ink-2);
  margin-bottom: 10px;
}

.expect-item i {
  color: var(--amber);
  font-size: .72rem;
  margin-top: 3px;
  flex-shrink: 0;
}

@media(max-width:900px) {
  .contact-left {
    grid-template-columns: 1fr;
  }
}

@media(max-width:900px) {

  .contact-left {
    flex-direction: column;
    gap: 24px;
  }

}

.tm {
  font-size: 0.25em;
  vertical-align: super;
  margin-left: 2px;
  top: -0.6em;
  position: relative;
  word-spacing: 0.1em;

}

.tm-footer {
  font-size: 0.30em;
  vertical-align: super;
  margin-left: 2px;
  top: -0.6em;
  position: relative;
  word-spacing: 0.1em;

}

.contact-left {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-expect {
  flex: 1;
  padding: 22px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 12px;
}

.expect-title {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}

.expect-item {
  display: flex;
  gap: 10px;
  font-size: .86rem;
  color: var(--ink-2);
  margin-bottom: 10px;
}

.expect-item i {
  color: var(--amber);
  font-size: .72rem;
  margin-top: 3px;
  flex-shrink: 0;
}

@media(max-width:900px) {
  .contact-left {
    flex-direction: column;
  }
}