:root {
  --ink: #20172b;
  --muted: #655a72;
  --line: #e7ddec;
  --paper: #fffafd;
  --soft: #f6edf8;
  --pink: #ec5fa3;
  --blue: #48b7e8;
  --violet: #6337a6;
  --teal: #1c9d9a;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(51, 32, 74, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(231, 221, 236, 0.82);
  background: rgba(255, 250, 253, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  font-size: 1.08rem;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: transparent;
  overflow: hidden;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.5), transparent 20%),
    linear-gradient(135deg, #191126 0%, #3c2a5a 48%, #7a3d83 100%);
  box-shadow: 0 14px 34px rgba(46, 24, 73, 0.24);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, #5bc4ee 0 18%, #f7a6cf 18% 34%, #ffffff 34% 48%, #f7a6cf 48% 64%, #5bc4ee 64% 78%, transparent 78% 100%);
  opacity: 0.9;
  mask: radial-gradient(circle, transparent 0 44%, #000 46% 62%, transparent 64%);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--white);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  filter: drop-shadow(0 2px 4px rgba(32, 23, 43, 0.24));
  transform: rotate(45deg);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.text-link:hover,
.blog-card a:hover {
  color: var(--violet);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(34px, 6vw, 86px) clamp(18px, 4vw, 64px) clamp(28px, 4vw, 54px);
  overflow: hidden;
  background-image:
    radial-gradient(ellipse at 22% 48%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 253, 0.9) 34%, rgba(255, 250, 253, 0.48) 58%, transparent 76%), linear-gradient(90deg, rgba(255, 250, 253, 0.92) 0%, rgba(255, 250, 253, 0.76) 34%, rgba(255, 250, 253, 0.28) 64%, rgba(32, 23, 43, 0.14) 100%),
    url("assets/images/hero-transwinks-premium.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -28px -34px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 250, 253, 0.16));
  filter: blur(2px);
}

.eyebrow {
  display: none;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.9rem, 5.8vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.25;
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
}

.hero-text {
  max-width: 62ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 850;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--violet));
  box-shadow: 0 14px 30px rgba(236, 95, 163, 0.24);
}

.button.secondary {
  color: var(--violet);
  border-color: var(--line);
  background: var(--white);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-media {
  display: none;
}

.hero::after {
  content: "transgender dating site";
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 220px;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(32, 23, 43, 0.72);
  font-size: 0.92rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.split-media img,
.blog-card img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-band,
.feature-grid,
.split-section,
.audience-section,
.blog-preview,
.cta-section,
.article-page {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 4vw, 64px);
}

.intro-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  color: var(--white);
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(22, 15, 34, 0.94) 0%, rgba(55, 30, 76, 0.82) 45%, rgba(32, 23, 43, 0.48) 100%),
    url("assets/images/why-transwinks-premium.png");
  background-position: center;
  background-size: cover;
}

.intro-band .eyebrow {
  color: #7de3dc;
}

.intro-copy {
  max-width: 780px;
}

.intro-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.intro-copy p + p {
  margin-top: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background:
    radial-gradient(circle at 14% 10%, rgba(91, 196, 238, 0.2), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(247, 166, 207, 0.22), transparent 32%),
    linear-gradient(135deg, #fffafd 0%, #f3f8ff 48%, #fff1fa 100%);
}

.section-heading {
  grid-column: 1 / -1;
  max-width: 850px;
  margin-bottom: 16px;
}

.feature-card,
.audience-grid article,
.post-list article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.feature-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(51, 32, 74, 0.08);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
}

.feature-card:nth-of-type(1) {
  background: linear-gradient(180deg, #ffffff 0%, #eff9ff 100%);
}

.feature-card:nth-of-type(2) {
  background: linear-gradient(180deg, #ffffff 0%, #fff0f8 100%);
}

.feature-card:nth-of-type(3) {
  background: linear-gradient(180deg, #ffffff 0%, #f6f0ff 100%);
}

.feature-card:nth-of-type(4) {
  background: linear-gradient(180deg, #ffffff 0%, #edfdfb 100%);
}

.audience-grid article {
  box-shadow: 0 18px 42px rgba(51, 32, 74, 0.08);
}

.audience-grid article:nth-child(1) {
  background: linear-gradient(180deg, #ffffff 0%, #edf9ff 100%);
  border-color: rgba(91, 196, 238, 0.34);
}

.audience-grid article:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #fff0f8 100%);
  border-color: rgba(247, 166, 207, 0.42);
}

.audience-grid article:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, #f4eeff 100%);
  border-color: rgba(99, 55, 166, 0.24);
}

.audience-grid article:nth-child(4) {
  background: linear-gradient(180deg, #ffffff 0%, #edfbfa 100%);
  border-color: rgba(28, 157, 154, 0.26);
}

.feature-card p,
.audience-grid p,
.post-list p,
.blog-card p,
.split-copy p,
.cta-section p,
.article-body p,
.article-body li,
.site-footer p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--pink);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #ffffff;
}

.split-copy {
  max-width: 660px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stat-row div {
  border-left: 3px solid var(--blue);
  padding-left: 14px;
}

.stat-row strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.stat-row span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
}

.audience-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(91, 196, 238, 0.28), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(247, 166, 207, 0.34), transparent 32%),
    linear-gradient(135deg, #edf8ff 0%, #fff2fa 54%, #f4edff 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.blog-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  background: var(--white);
}

.text-link {
  align-self: end;
  color: var(--pink);
  font-weight: 850;
}

.blog-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
}

.screenshot-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: 8px;
}

.screenshot-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  padding: clamp(16px, 2vw, 24px);
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(145deg, #fb83c6 0%, #ed39a4 56%, #c80fc0 100%);
  box-shadow: 0 22px 50px rgba(236, 95, 163, 0.22);
}

.screenshot-card > p {
  align-self: stretch;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.78rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.screenshot-card > h3 {
  align-self: stretch;
  margin: 12px 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.45vw, 1.25rem);
}

.phone-shot {
  position: relative;
  width: min(100%, 245px);
  min-height: 380px;
  margin-top: auto;
  border: 8px solid #251a31;
  border-bottom-width: 18px;
  border-radius: 34px;
  padding: 44px 18px 18px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, #43304e, #140d1d) border-box;
  box-shadow:
    0 24px 42px rgba(32, 23, 43, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.phone-shot::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 78px;
  height: 18px;
  border-radius: 999px;
  background: #251a31;
  transform: translateX(-50%);
}

.phone-shot::after {
  content: "";
  position: absolute;
  inset: 36px 10px 12px;
  z-index: 0;
  border-radius: 22px;
  background: var(--white);
}

.profile-photo,
.match-card,
.avatar,
.bubble,
.voice,
.tabs,
.sort-pill,
.distance-line,
.action-row,
.profile-lines,
.verified-badge {
  position: relative;
  z-index: 1;
}

.profile-photo {
  min-height: 195px;
  border-radius: 18px 18px 6px 6px;
  background:
    linear-gradient(160deg, rgba(32, 23, 43, 0.08), rgba(32, 23, 43, 0.42)),
    url("assets/images/online-transgender-dating.png") center / cover;
}

.verified-badge {
  display: inline-flex;
  transform: rotate(-10deg) translate(54px, -44px);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 25px rgba(32, 23, 43, 0.18);
  font-weight: 800;
}

.action-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: -18px;
}

.action-row span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--pink);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(32, 23, 43, 0.14);
  font-size: 0.74rem;
  font-weight: 900;
}

.profile-lines {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.profile-lines i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #ece8ef;
}

.profile-lines i:nth-child(2) {
  width: 72%;
}

.profile-lines i:nth-child(3) {
  width: 86%;
}

.sort-pill {
  display: inline-flex;
  margin-left: 2px;
  transform: translateY(-16px);
  border-radius: 12px;
  padding: 10px 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(32, 23, 43, 0.16);
  font-weight: 750;
}

.tabs {
  display: flex;
  gap: 30px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tabs span:first-child {
  color: var(--ink);
}

.match-card {
  min-height: 245px;
  transform: rotate(7deg);
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 52%, rgba(32, 23, 43, 0.58)),
    url("assets/images/hero-transgender-dating.png") center / cover;
  box-shadow: 0 18px 35px rgba(32, 23, 43, 0.18);
}

.distance-line {
  transform: rotate(7deg) translate(18px, -42px);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 850;
}

.chat-shot {
  padding-top: 78px;
}

.avatar {
  width: 70px;
  height: 70px;
  margin: -62px auto 44px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: url("assets/images/hero-transgender-dating.png") center / cover;
}

.bubble {
  max-width: 82%;
  margin: 0 auto 18px;
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.25;
}

.bubble.gray,
.voice.light {
  background: #f1eef2;
}

.bubble.pink,
.voice.pink {
  color: var(--white);
  background: #e6319d;
}

.voice {
  width: 72%;
  height: 40px;
  margin: 0 auto 18px;
  border-radius: 6px;
}

.voice::after {
  content: "";
  display: block;
  height: 100%;
  background:
    repeating-linear-gradient(90deg, transparent 0 9px, currentColor 9px 12px, transparent 12px 20px);
  opacity: 0.64;
  transform: scaleY(0.62);
}

.post-meta {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.cta-section {
  text-align: center;
  color: var(--white);
  background: radial-gradient(circle at top left, rgba(72, 183, 232, 0.55), transparent 34%), linear-gradient(135deg, #2d174f, #8e2f73);
}

.cta-section .eyebrow,
.cta-section p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-section h2,
.cta-section p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta-action {
  margin-top: 26px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding: 36px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-brand {
  margin-bottom: 10px;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 750;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding-bottom: 42px;
}

.article-hero h1 {
  max-width: 860px;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
}

.article-body {
  max-width: 820px;
}

.article-body h2 {
  margin-top: 42px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.post-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.post-list article {
  min-height: 250px;
}



.blog-article-page {
  min-height: 100vh;
  padding: clamp(44px, 6vw, 86px) clamp(18px, 4vw, 64px) clamp(72px, 8vw, 120px);
  color: var(--white);
  background:
    linear-gradient(90deg, #4f54f4 0%, #8f25f2 100%) top / 100% 14px no-repeat,
    radial-gradient(circle at 70% 8%, rgba(236, 95, 163, 0.2), transparent 28%),
    #050506;
}

.blog-article-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.blog-back-link {
  display: inline-flex;
  margin-bottom: clamp(32px, 5vw, 58px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  font-weight: 650;
}

.blog-back-link:hover {
  color: var(--white);
}

.blog-article-header {
  max-width: 920px;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.blog-article-header h1 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(2.7rem, 5.4vw, 5.7rem);
  line-height: 1.02;
}

.blog-article-header p {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.12rem, 2vw, 1.65rem);
}

.blog-hero-card {
  margin: 0 0 clamp(46px, 6vw, 78px);
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(91, 196, 238, 0.22), rgba(236, 95, 163, 0.28)),
    #17111f;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.blog-hero-card img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  opacity: 0.92;
}

.blog-content {
  max-width: 980px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.6vw, 1.42rem);
  line-height: 1.68;
}

.blog-content strong {
  color: var(--white);
}

.blog-content h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.blog-content-block {
  margin-top: clamp(34px, 5vw, 64px);
}

.blog-content-block.with-image {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

.blog-content-block.with-image img {
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.checklist-block ul {
  padding-left: 1.2em;
}

.checklist-block li + li {
  margin-top: 8px;
}

@media (max-width: 760px) {
  .blog-content-block.with-image {
    grid-template-columns: 1fr;
  }

  .blog-hero-card {
    border-radius: 18px;
  }
}

@media (max-width: 920px) {
  .hero,
  .intro-band,
  .split-section,
  .blog-card,
  .article-hero {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .audience-grid,
  .screenshot-grid,
  .post-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    background-image:
      radial-gradient(ellipse at 24% 46%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 253, 0.9) 42%, rgba(255, 250, 253, 0.58) 100%),
      url("assets/images/hero-transwinks-premium.png");
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .stat-row,
  .feature-grid,
  .audience-grid,
  .screenshot-grid,
  .post-list,
  .blog-preview {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    gap: 10px 14px;
    font-size: 0.88rem;
  }

  .hero::after {
    right: 12px;
    bottom: 12px;
    max-width: 180px;
  }

  .feature-card,
  .audience-grid article,
  .post-list article {
    min-height: auto;
  }

  .screenshot-card {
    min-height: 480px;
  }

  .phone-shot {
    width: min(100%, 270px);
  }
}

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

.blog-home-body {
  background: #020203;
}

.blog-home-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  padding: 22px clamp(22px, 5vw, 86px);
  color: var(--white);
  background: linear-gradient(105deg, #485af3 0%, #7c2ff2 52%, #b917f4 100%);
}

.blog-home-brand {
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  color: var(--white);
}

.blog-home-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.blog-home-nav a:hover {
  color: var(--white);
}

.blog-signup {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 24px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}

.blog-home-page {
  min-height: 100vh;
  padding: clamp(62px, 8vw, 132px) clamp(20px, 5vw, 86px) clamp(72px, 8vw, 120px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 2%, rgba(185, 23, 244, 0.18), transparent 28%),
    #020203;
}

.blog-home-hero {
  display: grid;
  justify-items: center;
  gap: 28px;
  margin-bottom: clamp(54px, 8vw, 120px);
  text-align: center;
}

.blog-home-hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 6.3rem);
}

.blog-search {
  width: min(780px, 100%);
}

.blog-search input {
  width: 100%;
  min-height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 0 28px;
  color: var(--white);
  background: #1b2533;
  font: inherit;
  font-size: 1.1rem;
  outline: none;
}

.blog-search input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.blog-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.blog-filter {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 12px 24px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font: inherit;
  font-weight: 750;
}

.blog-filter.active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, #485af3, #8f25f2);
}

.blog-filter.active span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #b917f4;
}

.blog-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.34fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(46px, 7vw, 92px);
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.32fr);
  overflow: hidden;
  border-radius: 18px;
  color: var(--white);
  background: #101929;
}

.featured-post img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.featured-post-copy {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 52px);
}

.featured-post-copy p,
.blog-tile p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
}

.featured-post-copy h2,
.blog-tile h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 2.4vw, 2.65rem);
  line-height: 1.28;
}

.featured-post-copy div,
.blog-tile footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 34px;
  color: rgba(255, 255, 255, 0.78);
}

.news-panel h2 {
  margin: 0 0 24px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.news-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 6px;
  color: var(--white);
  background: #1b2533;
}

.news-item img {
  width: 86px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
}

.news-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.news-item p,
.news-item time {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 44px);
  width: min(1160px, 100%);
}

.blog-tile {
  overflow: hidden;
  border-radius: 18px;
  background: #101929;
}

.blog-tile a {
  color: var(--white);
}

.blog-tile img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-tile div {
  padding: clamp(22px, 3vw, 34px);
}

@media (max-width: 980px) {
  .blog-home-header,
  .blog-featured-grid,
  .featured-post,
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-home-nav {
    order: 3;
  }

  .news-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .news-item time {
    grid-column: 2;
  }
}

.blog-featured-grid {
  position: relative;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.28fr);
  gap: clamp(30px, 6vw, 74px);
  width: min(1360px, 100%);
  margin-inline: auto;
}

.featured-post {
  min-height: 430px;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.featured-post img {
  min-height: 430px;
}

.featured-post-copy {
  min-height: 430px;
  background:
    radial-gradient(circle at 0 0, rgba(143, 37, 242, 0.18), transparent 34%),
    #101929;
}

.news-panel {
  align-self: center;
  transform: translateY(42px);
}

.news-item {
  grid-template-columns: 96px minmax(0, 1fr);
  border-radius: 0 8px 8px 0;
  background: linear-gradient(90deg, #1b2533, #111a29);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.news-item time {
  grid-column: 2;
  justify-self: end;
}

.editorial-grid {
  position: relative;
  grid-template-columns: minmax(300px, 0.42fr) minmax(360px, 0.42fr) minmax(240px, 0.16fr);
  align-items: start;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.editorial-grid::after {
  content: "Latest";
  align-self: start;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1;
}

.editorial-grid .blog-tile:first-child {
  grid-column: 1;
  transform: translateY(8px);
}

.editorial-grid .blog-tile:nth-child(2) {
  grid-column: 2;
  transform: translateY(-46px);
}

.blog-tile {
  border-radius: 22px;
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.34);
}

.blog-tile:first-child img {
  aspect-ratio: 1.18 / 1;
}

.blog-tile:nth-child(2) img {
  aspect-ratio: 1.55 / 1;
}

.blog-tile div {
  background:
    linear-gradient(180deg, rgba(143, 37, 242, 0.08), transparent 42%),
    #101929;
}

@media (max-width: 980px) {
  .news-panel,
  .editorial-grid .blog-tile:first-child,
  .editorial-grid .blog-tile:nth-child(2) {
    transform: none;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-grid::after {
    order: -1;
  }
}

.blog-home-header {
  background: linear-gradient(100deg, #265cff 0%, #8134ff 44%, #ff2bc2 100%);
  box-shadow: 0 18px 60px rgba(129, 52, 255, 0.28);
}

.blog-home-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(38, 92, 255, 0.32), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(255, 43, 194, 0.3), transparent 30%),
    radial-gradient(circle at 52% 48%, rgba(129, 52, 255, 0.18), transparent 36%),
    #030207;
}

.blog-search input {
  border-color: rgba(129, 52, 255, 0.65);
  background: linear-gradient(135deg, rgba(38, 92, 255, 0.2), rgba(255, 43, 194, 0.12)), #151d31;
  box-shadow: 0 0 0 4px rgba(129, 52, 255, 0.12), 0 20px 60px rgba(38, 92, 255, 0.14);
}

.blog-filter.active {
  background: linear-gradient(135deg, #265cff, #8f25f2 48%, #ff2bc2);
  box-shadow: 0 16px 42px rgba(255, 43, 194, 0.26);
}

.featured-post,
.blog-tile {
  background: linear-gradient(180deg, #18243b, #0d1423);
  box-shadow: 0 28px 90px rgba(129, 52, 255, 0.24), 0 22px 64px rgba(0, 0, 0, 0.38);
}

.featured-post-copy,
.blog-tile div {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 43, 194, 0.18), transparent 36%),
    linear-gradient(145deg, #17243d 0%, #101827 62%, #171024 100%);
}

.featured-post img,
.blog-tile img,
.news-item img {
  filter: saturate(1.18) contrast(1.05);
}

.news-item {
  background: linear-gradient(100deg, #223250, #121b2d 62%, #26123a);
  box-shadow: 0 22px 60px rgba(255, 43, 194, 0.16), 0 18px 52px rgba(0, 0, 0, 0.35);
}

.news-panel h2,
.editorial-grid::after {
  color: #ffffff;
  text-shadow: 0 0 28px rgba(255, 43, 194, 0.28);
}

.regular-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  width: min(1280px, 100%);
  margin: 0 auto;
}

.regular-blog-grid::after {
  content: none;
}

.regular-blog-grid .blog-tile,
.regular-blog-grid .blog-tile:first-child,
.regular-blog-grid .blog-tile:nth-child(2) {
  grid-column: auto;
  transform: none;
}

.regular-blog-grid .blog-tile img,
.regular-blog-grid .blog-tile:first-child img,
.regular-blog-grid .blog-tile:nth-child(2) img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.regular-blog-grid .blog-tile a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.regular-blog-grid .blog-tile div {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 300px;
}

.blog-excerpt {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

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