MS Teams Direct Routing

Version 9.1 by Chris Workman on 2026/07/27 17:12

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


  :root {
    --navy: #00346A;
    --navy-deep: #00284F;
    --blue: #007CB6;
    --ice: #E3F1F8;
    --coral: #E11636;
    --coral-tint: #FCE1E5;
    --bg: #F5F8FB;
    --ink: #16232F;
    --muted: #5A6472;
    --card-bg: #FFFFFF;
    --line: #E1E8EE;
  }

  * { box-sizing: border-box; }

  .fd-teams-hub {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6vh 6vw 4vh;
    border-radius: 16px;
  }

  .presence-rail {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
  }

  .presence-rail span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ice);
  }

  .presence-rail span:nth-child(1) { background: var(--coral); }
  .presence-rail span:nth-child(2) { background: var(--blue); }
  .presence-rail span:nth-child(3) { background: var(--navy); opacity: .5; }
  .presence-rail span:nth-child(4) { background: var(--navy); opacity: .25; }

  .logo {
    height: 34px;
    margin-bottom: 22px;
  }

  header {
    text-align: center;
    max-width: 640px;
    margin-bottom: 56px;
  }

  .eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
  }

  h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--navy-deep);
    margin: 0 0 16px;
  }

  header p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 340px));
    gap: 22px;
    width: 100%;
    max-width: 760px;
  }

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

  .card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 26px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(30, 39, 97, 0.12);
    border-color: transparent;
  }

  .card:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 3px;
  }

  .icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--ice);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card:nth-child(2) .icon-wrap { background: var(--coral-tint); }
  .card:nth-child(3) .icon-wrap { background: var(--ice); }
  .card:nth-child(4) .icon-wrap { background: var(--coral-tint); }

  .icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--navy-deep);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-deep);
  }

  .card-desc {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--muted);
    margin: -6px 0 0;
  }

  .arrow {
    margin-top: auto;
    padding-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--coral);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--coral);
    fill: none;
    stroke-width: 2;
    transition: transform 0.18s ease;
  }

  .card:hover .arrow svg {
    transform: translateX(3px);
  }

  footer {
    margin-top: 56px;
    font-size: 12.5px;
    color: var(--muted);
    text-align: center;
  }

  @media (prefers-reduced-motion: reduce) {
    .card, .arrow svg { transition: none; }
  }