/*
 * FACT NETWORKS CORPORATE 3.0
 * Build: 3.0.2-stage02
 * Stage 02: Corporate home showcase
 *
 * Goal:
 * - Keep the existing FACT dark navy / white / blue identity.
 * - Make the home page concise: hero -> core technology -> products -> platforms -> company.
 * - No product detail URLs yet. Stage 04+ will connect cards to internal detail pages/CMS.
 */

.fact-home-v4 {
  --f3-cyan: #76c7ff;
  --f3-blue: #377fe6;
  --f3-blue-bright: #64a8ff;
  --f3-green: #69d2b3;
  --f3-purple: #8e86ff;
  --f3-card: rgba(8, 18, 31, .86);
  --f3-card-strong: rgba(10, 23, 39, .96);
  --f3-line: rgba(119, 159, 207, .17);
  --f3-line-strong: rgba(112, 172, 242, .38);
  width: min(100%, var(--fact3-content));
  max-width: none;
  margin: 0 auto;
  padding-top: 0;
  color: #f5f8fc;
}

.fact-home-v4 *,
.fact-home-v4 *::before,
.fact-home-v4 *::after {
  box-sizing: border-box;
}

.fact-home-v4 a {
  color: inherit;
}

.f3-eyebrow,
.f3-section-kicker {
  margin: 0;
  color: #7990aa;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.f3-eyebrow span,
.f3-section-kicker {
  color: #72b6ff;
}

/* ========================================================================== */
/* HERO                                                                       */
/* ========================================================================== */

.f3-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(480px, .97fr);
  gap: clamp(52px, 6vw, 104px);
  min-height: min(820px, calc(100svh - var(--fact3-header-h)));
  align-items: center;
  padding: clamp(82px, 8vw, 132px) 0 clamp(72px, 7vw, 112px);
  border-bottom: 1px solid var(--f3-line);
}

.f3-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.f3-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 27px;
}

.f3-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, #438ceb, #7bc4ff);
  box-shadow: 0 0 14px rgba(78, 154, 247, .55);
}

.f3-hero h1 {
  margin: 0;
  max-width: 850px;
  color: #f8fbff;
  font-size: clamp(48px, 5.35vw, 82px);
  font-weight: 790;
  line-height: 1.04;
  letter-spacing: -.068em;
  word-break: keep-all;
}

.f3-hero h1 em {
  color: #8ec8ff;
  font-style: normal;
  font-weight: 760;
}

.f3-hero-lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: #9caabd;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.82;
  letter-spacing: -.025em;
  word-break: keep-all;
}

.f3-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.f3-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 22px;
  border: 1px solid rgba(119, 159, 207, .28);
  border-radius: 5px;
  color: #eaf3ff;
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

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

.f3-button-primary {
  border-color: #3e83de;
  background: linear-gradient(135deg, #225fae, #2f7ddf);
  box-shadow: 0 14px 36px rgba(26, 94, 181, .22);
}

.f3-button-primary:hover {
  border-color: #6caeff;
  box-shadow: 0 18px 42px rgba(27, 102, 199, .32);
}

.f3-button-ghost {
  background: rgba(255, 255, 255, .018);
}

.f3-button-ghost:hover {
  border-color: rgba(119, 179, 248, .52);
  background: rgba(66, 129, 208, .08);
}

.f3-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 58px 0 0;
  border-top: 1px solid var(--f3-line);
}

.f3-hero-metrics > div {
  position: relative;
  min-height: 116px;
  padding: 23px 20px 18px 0;
}

.f3-hero-metrics > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--f3-line);
}

.f3-hero-metrics dt {
  margin-bottom: 8px;
  color: #63768e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.f3-hero-metrics dd {
  margin: 0;
  color: #f7fbff;
  font-size: 29px;
  font-weight: 760;
  letter-spacing: -.045em;
}

.f3-hero-metrics span {
  display: block;
  margin-top: 6px;
  color: #74869c;
  font-size: 11px;
  line-height: 1.5;
}

/* CSS-built architecture visualization; no stock image dependency. */
.f3-hero-system {
  position: relative;
  width: min(100%, 660px);
  aspect-ratio: 1 / .92;
  justify-self: end;
  isolation: isolate;
}

.f3-hero-system::before {
  content: "";
  position: absolute;
  inset: 5% 4%;
  z-index: -3;
  background:
    radial-gradient(circle at center, rgba(50, 122, 216, .23), transparent 22%),
    radial-gradient(circle at 52% 46%, rgba(40, 103, 190, .14), transparent 43%);
  filter: blur(4px);
}

.f3-hero-system::after {
  content: "";
  position: absolute;
  inset: 7%;
  z-index: -4;
  opacity: .27;
  background-image:
    linear-gradient(rgba(111, 162, 221, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 162, 221, .14) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle, #000 22%, transparent 72%);
  mask-image: radial-gradient(circle, #000 22%, transparent 72%);
}

.f3-system-orbit {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(89, 152, 232, .26);
  border-radius: 50%;
  transform: rotate(-12deg) scaleY(.72);
  box-shadow: inset 0 0 52px rgba(32, 97, 180, .05), 0 0 40px rgba(32, 97, 180, .05);
}

.f3-system-orbit::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 53%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #83c9ff;
  box-shadow: 0 0 18px #5aa7ff;
}

.f3-system-orbit-b {
  inset: 24% 12%;
  opacity: .58;
  transform: rotate(52deg) scaleY(.62);
}

.f3-system-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 186px;
  height: 186px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(103, 171, 249, .44);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(16, 41, 70, .95), rgba(5, 13, 24, .96));
  box-shadow:
    0 30px 70px rgba(0, 0, 0, .34),
    inset 0 0 0 1px rgba(255,255,255,.015),
    0 0 60px rgba(43, 120, 218, .11);
  transform: translate(-50%, -50%) rotate(45deg);
}

.f3-system-core::before,
.f3-system-core::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(97, 161, 239, .12);
  border-radius: 15px;
}

.f3-system-core::after {
  inset: 24px;
  border-color: rgba(108, 178, 255, .07);
}

.f3-system-core > * {
  transform: rotate(-45deg);
}

.f3-system-core small {
  margin-bottom: 8px;
  color: #6c86a4;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .18em;
}

.f3-system-core strong {
  color: #f5faff;
  font-size: 39px;
  line-height: .9;
  letter-spacing: -.06em;
}

.f3-system-core span {
  margin-top: 9px;
  color: #7dbdff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .26em;
}

.f3-system-node {
  position: absolute;
  display: grid;
  min-width: 118px;
  gap: 5px;
  padding: 13px 15px;
  border: 1px solid rgba(108, 159, 219, .24);
  border-radius: 5px;
  background: rgba(5, 13, 23, .88);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}

.f3-system-node::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(93, 158, 238, .55), transparent);
}

.f3-system-node b {
  color: #e8f4ff;
  font-size: 10px;
  letter-spacing: .08em;
}

.f3-system-node span {
  color: #5f7895;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .16em;
}

.f3-node-ai { top: 9%; left: 12%; }
.f3-node-ai::before { top: 50%; right: -42px; }
.f3-node-security { top: 15%; right: 1%; }
.f3-node-security::before { top: 50%; left: -42px; transform: rotate(180deg); }
.f3-node-remote { top: 46%; right: -2%; }
.f3-node-remote::before { top: 50%; left: -42px; transform: rotate(180deg); }
.f3-node-industry { bottom: 12%; right: 12%; }
.f3-node-industry::before { top: 0; left: -30px; transform: rotate(-38deg); transform-origin: right; }
.f3-node-platform { bottom: 8%; left: 6%; }
.f3-node-platform::before { top: 0; right: -30px; transform: rotate(38deg); transform-origin: left; }

.f3-system-caption {
  position: absolute;
  right: 3%;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #536b86;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
}

.f3-system-caption span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #62a9ff;
  box-shadow: 0 0 14px rgba(98,169,255,.7);
}

/* ========================================================================== */
/* SHARED SECTION HEAD                                                        */
/* ========================================================================== */

.f3-tech,
.f3-products,
.f3-platforms {
  padding: clamp(78px, 8vw, 128px) 0;
  border-bottom: 1px solid var(--f3-line);
}

.f3-section-head {
  display: grid;
  grid-template-columns: minmax(250px, .75fr) minmax(320px, .65fr);
  justify-content: space-between;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 66px);
}

.f3-section-head > div {
  max-width: 760px;
}

.f3-section-head h2 {
  margin: 10px 0 0;
  color: #f4f8fd;
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.f3-section-head > p {
  justify-self: end;
  max-width: 530px;
  margin: 0;
  color: #7e8da0;
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

/* ========================================================================== */
/* CORE TECHNOLOGY                                                            */
/* ========================================================================== */

.f3-tech-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--f3-line);
  border-bottom: 1px solid var(--f3-line);
}

.f3-tech-grid article {
  position: relative;
  min-height: 285px;
  padding: 29px 25px 30px;
  background: linear-gradient(180deg, rgba(9, 20, 34, .52), rgba(6, 14, 24, .22));
  transition: background .22s ease, transform .22s ease;
}

.f3-tech-grid article + article {
  border-left: 1px solid var(--f3-line);
}

.f3-tech-grid article:hover {
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 37, 61, .84), rgba(7, 17, 30, .64));
  transform: translateY(-4px);
}

.f3-tech-no {
  display: block;
  margin-bottom: 54px;
  color: #52667e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.f3-tech-grid small {
  display: block;
  color: #6aaeff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}

.f3-tech-grid h3 {
  margin: 10px 0 13px;
  color: #eef5fd;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.f3-tech-grid p {
  margin: 0;
  color: #74859a;
  font-size: 12px;
  line-height: 1.75;
  word-break: keep-all;
}

/* ========================================================================== */
/* PRODUCTS                                                                   */
/* ========================================================================== */

.f3-products {
  scroll-margin-top: calc(var(--fact3-header-h) + 24px);
}

.f3-product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.f3-product-card {
  position: relative;
  grid-column: span 4;
  min-height: 330px;
  overflow: hidden;
  padding: 28px 28px 24px;
  border: 1px solid var(--f3-line);
  border-radius: 7px;
  background:
    radial-gradient(circle at 100% 0, rgba(53, 119, 205, .11), transparent 17rem),
    linear-gradient(145deg, rgba(12, 27, 45, .96), rgba(5, 13, 23, .95));
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.f3-product-card:nth-child(4),
.f3-product-card:nth-child(5) {
  grid-column: span 6;
}

.f3-product-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 118px;
  height: 118px;
  opacity: .45;
  background:
    linear-gradient(135deg, transparent 48%, rgba(102, 166, 242, .13) 49%, rgba(102, 166, 242, .13) 50%, transparent 51%),
    linear-gradient(45deg, transparent 48%, rgba(102, 166, 242, .07) 49%, rgba(102, 166, 242, .07) 50%, transparent 51%);
  background-size: 28px 28px;
}

.f3-product-card:hover {
  transform: translateY(-4px);
  border-color: var(--f3-line-strong);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .21);
}

.f3-card-top,
.f3-card-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.f3-card-top span {
  color: #536b85;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.f3-card-top small {
  color: #699ee0;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}

.f3-product-card h3 {
  position: relative;
  z-index: 1;
  margin: 54px 0 15px;
  color: #f6faff;
  font-size: clamp(26px, 2.3vw, 35px);
  line-height: 1;
  letter-spacing: -.055em;
}

.f3-product-card h3 em {
  display: inline-flex;
  margin-left: 8px;
  padding: 5px 7px;
  border: 1px solid rgba(120, 164, 216, .25);
  border-radius: 3px;
  color: #7890ad;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  vertical-align: middle;
}

.f3-product-card > p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  color: #8594a6;
  font-size: 13px;
  line-height: 1.75;
  word-break: keep-all;
}

.f3-product-card ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.f3-product-card li {
  padding: 6px 8px;
  border: 1px solid rgba(116, 155, 202, .15);
  border-radius: 3px;
  color: #6f8298;
  background: rgba(255,255,255,.012);
  font-size: 8px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.f3-card-foot {
  position: absolute;
  right: 28px;
  bottom: 22px;
  left: 28px;
  padding-top: 14px;
  border-top: 1px solid rgba(114, 153, 201, .11);
}

.f3-card-foot span {
  color: #52667e;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
}

.f3-card-foot b {
  color: #6baeff;
  font-size: 8px;
  letter-spacing: .14em;
}

.f3-product-defender { --product-accent: #6f9fff; }
.f3-product-guardian { --product-accent: #67b8ff; }
.f3-product-wems { --product-accent: #6fc8c2; }
.f3-product-velora { --product-accent: #8d8cff; }

.f3-product-card:hover .f3-card-foot b {
  color: var(--product-accent, #78b7ff);
}

.f3-stage-note {
  margin: 18px 0 0;
  color: #53667c;
  font-size: 10px;
  line-height: 1.6;
}

/* ========================================================================== */
/* PLATFORMS                                                                  */
/* ========================================================================== */

.f3-platform-grid {
  display: grid;
  grid-template-columns: 1.28fr .86fr .86fr;
  gap: 14px;
}

.f3-platform-card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  border: 1px solid var(--f3-line);
  border-radius: 7px;
  background:
    linear-gradient(160deg, rgba(12, 26, 43, .94), rgba(5, 12, 21, .95));
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.f3-platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--f3-line-strong);
  background: linear-gradient(160deg, rgba(15, 33, 55, .98), rgba(6, 15, 27, .98));
}

.f3-platform-featured {
  background:
    radial-gradient(circle at 0 0, rgba(28, 116, 204, .16), transparent 20rem),
    linear-gradient(160deg, rgba(13, 31, 52, .98), rgba(5, 13, 24, .97));
}

.f3-platform-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(114, 153, 201, .12);
}

.f3-platform-index span {
  color: #597087;
  font-size: 10px;
  font-weight: 800;
}

.f3-platform-index b {
  color: #6e9fdc;
  font-size: 7px;
  letter-spacing: .13em;
}

.f3-platform-card > small {
  display: block;
  margin-top: 51px;
  color: #6aaeff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.f3-platform-card h3 {
  margin: 10px 0 15px;
  color: #f6faff;
  font-size: clamp(27px, 2.4vw, 37px);
  line-height: 1;
  letter-spacing: -.055em;
}

.f3-platform-card > p {
  margin: 0;
  color: #8190a2;
  font-size: 13px;
  line-height: 1.78;
  word-break: keep-all;
}

.f3-platform-tags {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.f3-platform-tags span {
  padding: 6px 8px;
  border: 1px solid rgba(112, 153, 202, .14);
  border-radius: 3px;
  color: #667990;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}

/* ========================================================================== */
/* COMPANY CLOSING                                                            */
/* ========================================================================== */

.f3-company {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .72fr);
  gap: clamp(55px, 8vw, 130px);
  align-items: end;
  padding: clamp(84px, 9vw, 144px) 0 clamp(18px, 2vw, 32px);
}

.f3-company-copy h2 {
  max-width: 880px;
  margin: 13px 0 24px;
  color: #f6faff;
  font-size: clamp(36px, 4vw, 61px);
  line-height: 1.12;
  letter-spacing: -.06em;
  word-break: keep-all;
}

.f3-company-copy > p:last-child {
  max-width: 750px;
  margin: 0;
  color: #8392a4;
  font-size: 14px;
  line-height: 1.86;
  word-break: keep-all;
}

.f3-company-links {
  border-top: 1px solid var(--f3-line);
}

.f3-company-links a {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--f3-line);
  text-decoration: none;
  transition: padding .2s ease, background .2s ease;
}

.f3-company-links a:hover {
  padding-right: 13px;
  padding-left: 13px;
  background: rgba(53, 118, 203, .06);
}

.f3-company-links span {
  color: #62768d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}

.f3-company-links strong {
  color: #dce7f3;
  font-size: 14px;
  font-weight: 700;
}

.f3-company-links i {
  color: #6baeff;
  font-size: 14px;
  font-style: normal;
}

/* ========================================================================== */
/* RESPONSIVE                                                                 */
/* ========================================================================== */

@media (max-width: 1280px) {
  .f3-hero {
    grid-template-columns: minmax(0, 1fr) minmax(400px, .82fr);
    gap: 44px;
  }

  .f3-tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .f3-tech-grid article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--f3-line);
  }

  .f3-tech-grid article:nth-child(5) {
    border-top: 1px solid var(--f3-line);
  }

  .f3-platform-grid {
    grid-template-columns: 1fr 1fr;
  }

  .f3-platform-featured {
    grid-column: 1 / -1;
    min-height: 315px;
  }
}

@media (max-width: 980px) {
  .f3-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 88px;
  }

  .f3-hero-copy {
    max-width: 800px;
  }

  .f3-hero-system {
    width: min(100%, 620px);
    justify-self: center;
  }

  .f3-section-head,
  .f3-company {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .f3-section-head > p {
    justify-self: start;
  }

  .f3-product-card,
  .f3-product-card:nth-child(4),
  .f3-product-card:nth-child(5) {
    grid-column: span 6;
  }

  .f3-product-card:last-child {
    grid-column: 1 / -1;
  }

  .f3-company-links {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .fact-home-v4 {
    padding-right: 0;
    padding-left: 0;
  }

  .f3-hero {
    gap: 34px;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .f3-eyebrow {
    align-items: flex-start;
    line-height: 1.6;
  }

  .f3-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .f3-hero-lead {
    font-size: 15px;
    line-height: 1.75;
  }

  .f3-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .f3-button {
    width: 100%;
    justify-content: space-between;
  }

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

  .f3-hero-metrics > div {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 0;
    gap: 2px 20px;
    padding: 16px 0;
  }

  .f3-hero-metrics > div + div {
    padding-left: 0;
    border-top: 1px solid var(--f3-line);
    border-left: 0;
  }

  .f3-hero-metrics dd {
    grid-row: span 2;
    align-self: center;
  }

  .f3-hero-system {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-top: 10px;
  }

  .f3-system-core {
    width: 142px;
    height: 142px;
  }

  .f3-system-core strong {
    font-size: 30px;
  }

  .f3-system-node {
    min-width: 94px;
    padding: 10px 11px;
  }

  .f3-node-ai { top: 3%; left: 2%; }
  .f3-node-security { top: 9%; right: 0; }
  .f3-node-remote { top: 48%; right: 0; }
  .f3-node-industry { right: 3%; bottom: 9%; }
  .f3-node-platform { bottom: 4%; left: 0; }

  .f3-system-caption {
    display: none;
  }

  .f3-tech,
  .f3-products,
  .f3-platforms {
    padding: 68px 0;
  }

  .f3-section-head {
    margin-bottom: 34px;
  }

  .f3-section-head h2 {
    font-size: 38px;
  }

  .f3-tech-grid {
    grid-template-columns: 1fr;
  }

  .f3-tech-grid article {
    min-height: 0;
    padding: 24px 20px 25px;
    border-top: 1px solid var(--f3-line);
    border-left: 0 !important;
  }

  .f3-tech-grid article:first-child {
    border-top: 0;
  }

  .f3-tech-no {
    margin-bottom: 27px;
  }

  .f3-product-grid,
  .f3-platform-grid {
    grid-template-columns: 1fr;
  }

  .f3-product-card,
  .f3-product-card:nth-child(4),
  .f3-product-card:nth-child(5),
  .f3-product-card:last-child,
  .f3-platform-featured {
    grid-column: auto;
  }

  .f3-product-card,
  .f3-platform-card,
  .f3-platform-featured {
    min-height: 330px;
    padding: 24px 22px;
  }

  .f3-card-foot,
  .f3-platform-tags {
    right: 22px;
    left: 22px;
  }

  .f3-company {
    padding-top: 70px;
  }

  .f3-company-copy h2 {
    font-size: 39px;
  }

  .f3-company-links a {
    grid-template-columns: 78px 1fr auto;
  }
}

@media (max-width: 430px) {
  .f3-hero h1 {
    font-size: 39px;
  }

  .f3-system-node {
    min-width: 82px;
  }

  .f3-system-node b {
    font-size: 8px;
  }

  .f3-system-node span {
    font-size: 6px;
  }

  .f3-product-card h3,
  .f3-platform-card h3 {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .f3-product-card,
  .f3-platform-card,
  .f3-tech-grid article,
  .f3-button {
    transition: none !important;
  }
}