:root {
  --ff-pink: #dc0067;
  --ff-pink-dark: #b60055;
  --ff-yellow: #ffb400;
  --ff-cyan: #009ee0;
  --ff-ink: #262626;
  --ff-muted: #696969;
  --ff-soft: #f4f4f4;
  --ff-border: #e4e4e4;
  --ff-white: #ffffff;
  --ff-max: 1200px;
  --ff-radius: 2px;
  --ff-shadow: 0 14px 45px rgba(0,0,0,.08);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ff-ink);
  background: var(--ff-white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; }
a { color: var(--ff-pink); text-decoration-thickness: .08em; text-underline-offset: .15em; }
a:hover { color: var(--ff-pink-dark); }

h1, h2, h3, h4 {
  margin-top: 0;
  color: var(--ff-ink);
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 { font-size: clamp(3rem, 7vw, 6.6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4.3rem); }
h3 { font-size: clamp(1.45rem, 2vw, 2rem); }

p { margin: 0 0 1.25em; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  clip: auto !important;
  height: auto;
  width: auto;
  top: 6px;
  left: 6px;
  z-index: 100000;
  padding: 12px 18px;
  background: #fff;
  color: #000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.admin-bar .site-header { top: 32px; }

.site-header__inner {
  width: min(calc(100% - 40px), var(--ff-max));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-branding .custom-logo { max-height: 58px; width: auto; }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ff-ink);
  text-decoration: none;
  line-height: 1;
}

.wordmark:hover { color: var(--ff-ink); }
.wordmark__symbol { font-size: 2.7rem; color: var(--ff-pink); }
.wordmark strong { display: block; font-size: 1.45rem; letter-spacing: -.04em; }
.wordmark small { display: block; margin-top: 3px; font-size: .9rem; color: var(--ff-muted); letter-spacing: .08em; text-transform: uppercase; }

.primary-navigation .menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.primary-navigation .menu li { position: relative; }
.primary-navigation .menu a {
  display: block;
  padding: 31px 12px 27px;
  border-bottom: 4px solid transparent;
  color: var(--ff-ink);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease;
}

.primary-navigation .menu a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
  color: var(--ff-pink);
  border-bottom-color: var(--ff-yellow);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ff-ink);
}

.hero {
  min-height: 670px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ff-pink);
  color: #fff;
}

.hero__inner {
  width: min(calc(100% - 40px), var(--ff-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: center;
  gap: 60px;
  padding: 86px 0 92px;
}

.hero h1 { max-width: 850px; color: #fff; margin-bottom: 30px; }
.hero__lead { max-width: 720px; font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.5; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.eyebrow {
  display: block;
  margin-bottom: 18px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow--pink { color: var(--ff-pink); }
.eyebrow--yellow { color: var(--ff-yellow); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: var(--ff-radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--light { background: #fff; color: var(--ff-pink); }
.button--light:hover { color: var(--ff-pink); background: var(--ff-yellow); }
.button--outline-light { border-color: #fff; color: #fff; background: transparent; }
.button--outline-light:hover { background: #fff; color: var(--ff-pink); }
.button--pink { background: var(--ff-pink); color: #fff; }
.button--pink:hover { background: var(--ff-pink-dark); color: #fff; }
.button--yellow { background: var(--ff-yellow); color: var(--ff-ink); }
.button--yellow:hover { background: #ffc62e; color: var(--ff-ink); }

.hero__mark {
  position: relative;
  min-height: 420px;
}

.node {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 9px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(255,255,255,.08);
}
.node--1 { top: 35px; right: 40px; }
.node--2 { top: 185px; left: 35px; }
.node--3 { bottom: 30px; right: 85px; }

.mesh-line {
  position: absolute;
  height: 5px;
  background: rgba(255,255,255,.85);
  transform-origin: left center;
}
.mesh-line--1 { width: 250px; top: 205px; left: 68px; transform: rotate(-29deg); }
.mesh-line--2 { width: 245px; top: 215px; left: 76px; transform: rotate(35deg); }
.mesh-line--3 { width: 275px; top: 85px; right: 47px; transform: rotate(77deg); }

.section { padding: 105px 0; }
.section--soft { background: var(--ff-soft); }
.section--dark { background: #222; color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }

.section__inner {
  width: min(calc(100% - 40px), var(--ff-max));
  margin: 0 auto;
}
.section__inner--narrow { max-width: 920px; }

.intro { text-align: left; }
.lead { font-size: clamp(1.15rem, 2vw, 1.45rem); color: #454545; line-height: 1.65; }
.section--dark .lead { color: #ddd; }

.cards {
  display: grid;
  gap: 28px;
}
.cards--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  min-height: 360px;
  padding: 38px;
  background: #fff;
  border-top: 7px solid var(--ff-pink);
  box-shadow: var(--ff-shadow);
}
.card__number {
  display: inline-block;
  margin-bottom: 66px;
  color: var(--ff-pink);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.card p { color: var(--ff-muted); }

.text-link {
  font-weight: 850;
  color: var(--ff-pink);
  text-decoration: none;
}
.text-link:hover { color: var(--ff-pink-dark); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.split--reverse > :first-child { order: 1; }
.split--reverse > :last-child { order: 2; }

.visual-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #e9e9e9;
  box-shadow: var(--ff-shadow);
}
.visual-card--map {
  background:
    linear-gradient(30deg, rgba(220,0,103,.08) 12%, transparent 12.5%, transparent 87%, rgba(220,0,103,.08) 87.5%, rgba(220,0,103,.08)),
    linear-gradient(150deg, rgba(0,158,224,.08) 12%, transparent 12.5%, transparent 87%, rgba(0,158,224,.08) 87.5%, rgba(0,158,224,.08)),
    #f3f3f3;
}
.visual-card--map span {
  position: absolute;
  width: 28px;
  height: 28px;
  background: var(--ff-pink);
  border: 7px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--ff-pink);
}
.visual-card--map span:nth-child(1) { left: 16%; top: 23%; }
.visual-card--map span:nth-child(2) { right: 18%; top: 17%; }
.visual-card--map span:nth-child(3) { left: 49%; top: 48%; }
.visual-card--map span:nth-child(4) { left: 22%; bottom: 17%; }
.visual-card--map span:nth-child(5) { right: 14%; bottom: 22%; }

.visual-card--router {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #303030, #151515);
}
.router-body {
  position: relative;
  width: 260px;
  height: 95px;
  border-radius: 8px;
  background: #f5f5f5;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.router-led {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 72px 0 0 14px;
  border-radius: 50%;
  background: var(--ff-pink);
}
.wifi {
  position: absolute;
  border: 5px solid var(--ff-yellow);
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}
.wifi--1 { width: 70px; height: 70px; top: 92px; left: calc(50% - 35px); }
.wifi--2 { width: 120px; height: 120px; top: 67px; left: calc(50% - 60px); opacity: .72; }
.wifi--3 { width: 175px; height: 175px; top: 42px; left: calc(50% - 87px); opacity: .38; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ff-border);
  box-shadow: 0 7px 28px rgba(0,0,0,.05);
}
.post-card__image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ff-soft);
}
.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.post-card:hover .post-card__image img { transform: scale(1.03); }
.post-card__body { padding: 30px; }
.post-card__meta {
  display: block;
  margin-bottom: 14px;
  color: var(--ff-pink);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.post-card h3 a { color: var(--ff-ink); text-decoration: none; }
.post-card p { color: var(--ff-muted); }

.cta {
  padding: 110px 0;
  background: var(--ff-pink);
  color: #fff;
}
.cta__inner {
  width: min(calc(100% - 40px), var(--ff-max));
  margin: 0 auto;
}
.cta h2 { max-width: 850px; color: #fff; }

.page-hero {
  padding: 95px 0 88px;
  background: var(--ff-pink);
  color: #fff;
}
.page-hero__inner {
  width: min(calc(100% - 40px), var(--ff-max));
  margin: 0 auto;
}
.page-hero h1 { max-width: 1000px; margin: 0; color: #fff; }
.page-hero__lead { max-width: 800px; margin-top: 30px; font-size: 1.35rem; }
.post-author { margin-top: 24px; opacity: .9; }

.featured-image {
  width: min(calc(100% - 40px), var(--ff-max));
  margin: 70px auto 0;
}
.featured-image img { width: 100%; display: block; }

.content-wrap {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
  padding: 80px 0 100px;
}
.entry-content {
  font-size: 1.08rem;
}
.entry-content > * + * { margin-top: 1.35em; }
.entry-content h2 { margin-top: 1.7em; font-size: clamp(2rem, 4vw, 3.1rem); }
.entry-content h3 { margin-top: 1.6em; }
.entry-content ul,
.entry-content ol { padding-left: 1.4em; }
.entry-content blockquote {
  margin: 2.2em 0;
  padding: 10px 0 10px 30px;
  border-left: 6px solid var(--ff-pink);
  font-size: 1.3rem;
}
.entry-content .wp-block-button__link {
  background: var(--ff-pink);
  border-radius: var(--ff-radius);
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
}
.entry-content th,
.entry-content td {
  padding: 14px;
  border: 1px solid var(--ff-border);
  text-align: left;
}

.post-navigation-wrap {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto 90px;
}
.post-navigation a { font-weight: 800; }

.pagination {
  margin-top: 55px;
}
.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  background: var(--ff-soft);
  text-decoration: none;
}
.pagination .current {
  background: var(--ff-pink);
  color: #fff;
}

.error-page {
  min-height: 65vh;
  display: grid;
  place-items: center;
  padding: 100px 20px;
}
.error-page__inner { max-width: 820px; text-align: center; }

.comments-area { padding-top: 20px; border-top: 1px solid var(--ff-border); }
.comment-list { padding-left: 1.2em; }
.comment-list .comment { margin-bottom: 30px; }

.site-footer {
  background: #292929;
  color: #d5d5d5;
}
.site-footer__inner {
  width: min(calc(100% - 40px), var(--ff-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 60px;
  padding: 75px 0;
}
.site-footer strong { font-size: 1.5rem; color: #fff; }
.site-footer p { margin-top: 8px; color: #aaa; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--ff-yellow); }
.site-footer__legal {
  width: min(calc(100% - 40px), var(--ff-max));
  margin: 0 auto;
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #444;
  font-size: .82rem;
  color: #9e9e9e;
}
.site-footer__legal > div:first-child { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.site-footer__legal-links { display: flex; gap: 18px; }

@media (max-width: 980px) {
  .admin-bar .site-header { top: 46px; }
  .nav-toggle { display: block; cursor: pointer; }
  .primary-navigation {
    position: fixed;
    inset: 85px 0 auto 0;
    display: none;
    max-height: calc(100vh - 85px);
    overflow: auto;
    background: #fff;
    border-top: 1px solid var(--ff-border);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
  }
  .primary-navigation.is-open { display: block; }
  .primary-navigation .menu { display: block; padding: 14px 20px 22px; }
  .primary-navigation .menu a { padding: 16px 8px; border-bottom: 1px solid var(--ff-border); font-size: 1.08rem; }

  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; padding: 76px 0; }
  .hero__mark { display: none; }

  .cards--3,
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 55px; }
  .split--reverse > :first-child,
  .split--reverse > :last-child { order: initial; }
  .visual-card { min-height: 360px; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .site-header__inner,
  .hero__inner,
  .section__inner,
  .page-hero__inner,
  .cta__inner,
  .site-footer__inner,
  .site-footer__legal,
  .featured-image,
  .content-wrap,
  .post-navigation-wrap {
    width: min(calc(100% - 28px), var(--ff-max));
  }

  .section { padding: 76px 0; }
  .hero__inner { padding: 62px 0 68px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }

  .cards--3,
  .posts-grid { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .card__number { margin-bottom: 35px; }

  .section-heading { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 65px 0; }
  .content-wrap { padding-top: 58px; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 35px; }
  .site-footer__legal { flex-direction: column; }
}
