:root {
  --bg: #f3f6fb;
  --panel: #ffffff;
  --panel-soft: #fbfcff;
  --text: #101828;
  --muted: #667085;
  --line: #d9e0ea;
  --line-strong: #c8d2df;
  --soft: #eef3f8;
  --brand: #e1306c;
  --brand-dark: #b91d55;
  --brand-soft: rgba(225, 48, 108, 0.10);
  --blue: #2563eb;
  --blue-soft: rgba(37, 99, 235, 0.10);
  --green: #0f9f6e;
  --green-soft: rgba(15, 159, 110, 0.11);
  --red: #d92d20;
  --red-soft: rgba(217, 45, 32, 0.10);
  --amber: #b7791f;
  --amber-soft: rgba(183, 121, 31, 0.12);
  --violet: #7c3aed;
  --ink: #07111f;
  --shadow: 0 28px 70px rgba(16, 24, 40, 0.12);
  --shadow-soft: 0 14px 34px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  position: relative;
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: Arial, "Helvetica Neue", sans-serif;
  letter-spacing: 0;
  background:
    linear-gradient(135deg, rgba(225, 48, 108, 0.11) 0, rgba(37, 99, 235, 0.10) 38%, rgba(15, 159, 110, 0.055) 72%, rgba(245, 247, 251, 0) 100%),
    linear-gradient(180deg, #fbfdff 0, #f3f6fb 42%, #f7f8fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 24, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 58%);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.app-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  margin-bottom: 12px;
  padding: 9px 10px 9px 14px;
  border: 1px solid rgba(202, 213, 226, 0.90);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.09);
  backdrop-filter: blur(14px);
}

.site-brand {
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.site-nav div {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(217, 224, 234, 0.78);
  border-radius: 8px;
  background: rgba(248, 251, 255, 0.92);
}

.site-nav div a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav div a:hover,
.site-nav div a.active {
  color: var(--brand-dark);
  background: #fff;
  box-shadow: 0 9px 20px rgba(16, 24, 40, 0.07);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  align-items: stretch;
  gap: 24px;
  padding: 30px 0 24px;
}

.hero-copy {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(225, 48, 108, 0.24);
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 22px rgba(225, 48, 108, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0 12px;
  color: #0f172a;
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p,
.panel-heading p,
.results-toolbar p,
.notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero-copy > p {
  max-width: 620px;
  font-size: 16px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(217, 224, 234, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.hero-stats div {
  position: relative;
  padding: 18px 18px;
  border-right: 1px solid var(--line);
}

.hero-stats div::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 18px;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
}

.hero-stats div:nth-child(2)::before {
  background: var(--blue);
}

.hero-stats div:nth-child(3)::before {
  background: var(--amber);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  margin-top: 9px;
  font-size: 29px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.account-panel {
  width: min(410px, 100%);
  align-self: center;
  border: 1px solid rgba(217, 224, 234, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(12px);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.auth-tab {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
}

.auth-tab.active {
  border-color: rgba(255, 255, 255, 0.80);
  color: var(--brand-dark);
  background: #fff;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
}

.auth-form,
.premium-form {
  display: grid;
  gap: 10px;
}

.auth-message,
#accountUsage {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.4;
  font-size: 13px;
}

#accountName {
  display: block;
  font-size: 17px;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.google-button-wrap {
  display: grid;
  min-height: 42px;
  margin-bottom: 10px;
}

.google-button-wrap > div {
  justify-self: stretch;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.notice-button {
  width: 100%;
  margin-top: 12px;
}

.account-signed-in {
  display: grid;
  gap: 12px;
}

.account-signed-in[hidden],
.account-signed-out[hidden] {
  display: none;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 8px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
}

.plan-badge.premium {
  color: var(--green);
  background: var(--green-soft);
}

.plan-badge.plus {
  color: var(--violet);
  background: rgba(124, 58, 237, 0.11);
}

.tool-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: stretch;
}

.suggest-panel {
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid rgba(217, 224, 234, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.suggest-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px auto;
  gap: 12px;
  align-items: end;
  margin-top: 16px;
}

.suggestions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 0;
  margin-top: 16px;
}

.suggestions-list:empty {
  display: none;
}

.suggestion-button {
  min-height: 34px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  padding: 0 11px;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.08);
  font-weight: 800;
}

.suggestion-button:hover {
  background: rgba(37, 99, 235, 0.14);
}

.suggest-summary {
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.query-panel,
.side-panel,
.results-panel {
  border: 1px solid rgba(217, 224, 234, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.query-panel,
.side-panel {
  padding: 22px;
}

.panel-heading,
.results-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

h2 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 18px;
  letter-spacing: 0;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.05);
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

textarea {
  display: block;
  width: 100%;
  min-height: 270px;
  margin: 18px 0;
  padding: 16px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0, #fbfcff 100%);
  line-height: 1.6;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(16, 24, 40, 0.03);
}

textarea:focus,
input:focus,
select:focus {
  border-color: rgba(225, 48, 108, 0.54);
  box-shadow: 0 0 0 4px rgba(225, 48, 108, 0.12);
}

.controls {
  display: grid;
  grid-template-columns: 160px 160px 1fr auto;
  gap: 12px;
  align-items: end;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select {
  min-height: 42px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--text);
  outline: none;
}

select {
  appearance: auto;
}

.primary-button,
.secondary-button {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 900;
  white-space: nowrap;
  letter-spacing: 0;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.primary-button {
  color: #fff;
  border-color: rgba(190, 24, 93, 0.24);
  background: linear-gradient(180deg, #e63876 0%, #be185d 100%);
  box-shadow: 0 12px 24px rgba(190, 24, 93, 0.20);
}

.primary-button:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #d92f6c 0%, #a91550 100%);
  box-shadow: 0 16px 30px rgba(190, 24, 93, 0.24);
}

.secondary-button {
  color: #1d2939;
  border-color: rgba(202, 213, 226, 0.96);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 9px 18px rgba(16, 24, 40, 0.055);
}

.secondary-button:hover,
.icon-button:hover {
  color: #0f172a;
  border-color: rgba(148, 163, 184, 0.88);
  background: linear-gradient(180deg, #ffffff 0%, #eef3f8 100%);
  transform: translateY(-1px);
}

.side-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.status-box {
  display: flex;
  gap: 12px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.status-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.pulse {
  width: 11px;
  height: 11px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--blue), var(--green));
  transition: width 180ms ease;
}

.notice {
  margin-top: auto;
  padding: 14px;
  border: 1px solid rgba(183, 121, 31, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 252, 244, 0.95), rgba(255, 248, 235, 0.88));
}

.notice strong {
  display: block;
  margin-bottom: 6px;
}

code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(17, 24, 39, 0.08);
}

.results-panel {
  margin-top: 18px;
  overflow: hidden;
}

.results-toolbar {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #fbfcff);
}

.toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.toolbar-actions select {
  width: 170px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  background: #f7f9fc;
  font-size: 12px;
  text-transform: uppercase;
}

td {
  color: #263244;
  background: #fff;
}

tbody tr:hover td {
  background: #fbfcff;
}

.empty-row td {
  height: 120px;
  color: var(--muted);
  text-align: center;
}

.username-cell {
  font-weight: 800;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.badge.available {
  color: var(--green);
  background: var(--green-soft);
}

.badge.premium-plus {
  color: var(--violet);
  background: rgba(124, 58, 237, 0.11);
}

.badge.taken,
.badge.checking {
  color: var(--blue);
  background: var(--blue-soft);
}

.badge.invalid {
  color: var(--red);
  background: var(--red-soft);
}

.badge.unchecked,
.badge.valid {
  color: var(--amber);
  background: var(--amber-soft);
}

.blog-shell {
  width: min(1060px, calc(100% - 32px));
}

.blog-hero,
.blog-article {
  margin-top: 18px;
  border: 1px solid rgba(217, 224, 234, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.blog-hero {
  padding: 34px;
}

.blog-hero h1,
.blog-article h1 {
  max-width: 820px;
  margin: 16px 0 12px;
  color: #0f172a;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.blog-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.blog-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(217, 224, 234, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.blog-card > span,
.blog-meta,
.blog-back {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.blog-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.blog-card h2 a,
.blog-card-foot a,
.blog-back {
  color: #0f172a;
  text-decoration: none;
}

.blog-card h2 a:hover,
.blog-card-foot a:hover,
.blog-back:hover {
  color: var(--brand-dark);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.blog-card-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.blog-article {
  overflow: hidden;
}

.blog-article-head {
  padding: 34px 34px 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #fbfcff);
}

.blog-article-head p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.blog-meta span {
  min-height: 28px;
  padding: 7px 10px 0;
  border-radius: 999px;
  background: var(--soft);
}

.blog-content,
.blog-faq,
.blog-tool-cta {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 34px;
}

.blog-content h2,
.blog-faq h2,
.blog-tool-cta h2 {
  margin: 28px 0 10px;
  font-size: 25px;
  line-height: 1.2;
}

.blog-content h2:first-child {
  margin-top: 0;
}

.blog-content p,
.blog-faq p,
.blog-tool-cta p {
  margin: 0 0 16px;
  color: #344054;
  line-height: 1.78;
  font-size: 16px;
}

.blog-faq {
  display: grid;
  gap: 10px;
}

.blog-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  padding: 14px 16px;
}

.blog-faq summary {
  cursor: pointer;
  color: #172033;
  font-weight: 900;
}

.blog-faq p {
  margin: 12px 0 0;
}

.blog-tool-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: none;
  margin: 10px 34px 34px;
  border: 1px solid rgba(225, 48, 108, 0.20);
  border-radius: 8px;
  background: var(--brand-soft);
}

.blog-tool-cta h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.blog-tool-cta p {
  margin: 0;
}

.blog-cta {
  margin-top: 18px;
}

/* Blog reference layout */
.blog-shell {
  width: min(1280px, calc(100% - 32px));
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 22px;
  margin-top: 34px;
}

.blog-main {
  display: grid;
  gap: 18px;
}

.blog-hero-reference {
  min-height: 220px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 26px;
  margin-top: 0;
  padding: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgba(225, 48, 108, 0.10), transparent 22%),
    radial-gradient(circle at 92% 78%, rgba(37, 99, 235, 0.10), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #fbfcff 48%, #f8fbff 100%);
}

.blog-hero-reference h1 {
  max-width: 560px;
  margin: 22px 0 14px;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.1;
}

.blog-hero-reference p {
  max-width: 590px;
}

.blog-hero-art {
  position: relative;
  min-height: 160px;
  transform: rotate(-3deg);
}

.hero-paper {
  position: absolute;
  width: 126px;
  height: 150px;
  top: 20px;
  border: 1px solid rgba(203, 213, 225, 0.62);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #eef3ff 100%);
  box-shadow: 0 26px 46px rgba(84, 91, 145, 0.16);
}

.hero-paper::before,
.hero-paper::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  height: 8px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
}

.hero-paper::before {
  top: 52px;
}

.hero-paper::after {
  top: 76px;
}

.hero-paper-left {
  left: 34px;
  transform: rotate(12deg);
}

.hero-paper-right {
  right: 34px;
  transform: rotate(-10deg);
}

.hero-insta-badge {
  position: absolute;
  top: 48px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #f06a35 0%, #e1306c 50%, #7c3aed 100%);
  box-shadow: 0 20px 38px rgba(225, 48, 108, 0.30);
  transform: translateX(-50%) rotate(3deg);
  font-weight: 900;
}

.blog-grid {
  margin-top: 0;
  gap: 18px;
}

.blog-card {
  min-height: 214px;
  padding: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.blog-card:hover {
  border-color: rgba(225, 48, 108, 0.28);
  box-shadow: 0 22px 44px rgba(16, 24, 40, 0.10);
  transform: translateY(-2px);
}

.blog-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  gap: 18px;
}

.blog-card-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #e1306c;
  background: rgba(225, 48, 108, 0.08);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.blog-card h2 {
  max-width: 330px;
  font-size: 20px;
  line-height: 1.35;
}

.blog-card p {
  max-width: 360px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.65;
}

.blog-card-icon {
  display: grid;
  place-items: center;
  align-self: start;
  width: 86px;
  height: 86px;
  border-radius: 8px;
  color: #e1306c;
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.10), rgba(124, 58, 237, 0.08));
}

.blog-card:nth-child(2n) .blog-card-icon {
  color: #9333ea;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.10), rgba(37, 99, 235, 0.08));
}

.blog-card:nth-child(3n) .blog-card-icon {
  color: #a855f7;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.10), rgba(225, 48, 108, 0.07));
}

.blog-card:nth-child(4n) .blog-card-icon {
  color: #db2777;
  background: linear-gradient(135deg, rgba(219, 39, 119, 0.10), rgba(245, 158, 11, 0.08));
}

.blog-card-icon svg {
  width: 46px;
  height: 46px;
}

.blog-card-foot {
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.blog-card-foot a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 12px;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: #344054;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.blog-pagination a.active,
.blog-pagination a:hover {
  border-color: rgba(225, 48, 108, 0.42);
  color: #e1306c;
  background: #fff5f9;
}

.blog-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.blog-side-card {
  padding: 22px;
  border: 1px solid rgba(217, 224, 234, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.blog-side-card h2 {
  margin: 0 0 18px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.2;
}

.blog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.blog-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #172033;
  font: inherit;
}

.blog-search svg {
  width: 22px;
  height: 22px;
  color: #475569;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.blog-category-list {
  display: grid;
  gap: 2px;
}

.blog-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 8px;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.blog-category-list a + a {
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.blog-category-list a.active {
  color: #e1306c;
  border-radius: 8px;
  border-top: 0;
  background: rgba(225, 48, 108, 0.08);
}

.blog-category-list strong {
  color: inherit;
  font-size: 13px;
}

.popular-list {
  display: grid;
  gap: 14px;
}

.popular-list a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 4px;
  color: #0f172a;
  text-decoration: none;
}

.popular-list a span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #fbf5fa;
  color: #0f172a;
  font-weight: 900;
}

.popular-list a strong {
  font-size: 14px;
  line-height: 1.35;
}

.popular-list a time {
  color: var(--muted);
  font-size: 13px;
}

.all-posts-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  margin-top: 22px;
  border: 1px solid rgba(225, 48, 108, 0.22);
  border-radius: 8px;
  color: #e1306c;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.all-posts-link:hover {
  background: #fff5f9;
}

.seo-section {
  margin-top: 18px;
  padding: 26px;
  border: 1px solid rgba(217, 224, 234, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.seo-section h2 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.06;
}

.seo-section > div > p,
.seo-grid p,
.seo-faq p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

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

.seo-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.seo-grid h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.seo-faq {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.seo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #172033;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.seo-links a:hover {
  border-color: rgba(225, 48, 108, 0.28);
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.seo-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px 16px;
}

.seo-faq summary {
  cursor: pointer;
  color: #172033;
  font-weight: 900;
}

.seo-faq p {
  margin-top: 10px;
}

/* Front page polish */
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, #e1306c 0%, #f06a35 48%, #2563eb 100%);
  box-shadow: 0 12px 28px rgba(225, 48, 108, 0.26);
  font-size: 13px;
  font-weight: 900;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(190, 24, 93, 0.26);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #e63876 0%, #be185d 100%);
  box-shadow: 0 12px 24px rgba(190, 24, 93, 0.18);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.nav-cta:hover {
  background: linear-gradient(180deg, #d92f6c 0%, #a91550 100%);
  box-shadow: 0 15px 28px rgba(190, 24, 93, 0.22);
}

.hero-redesign {
  position: relative;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 30px;
  padding: 44px 0 28px;
}

.hero-redesign .hero-copy {
  min-height: 390px;
}

.hero-redesign h1 {
  max-width: 830px;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(46px, 6.2vw, 76px);
  line-height: 0.96;
}

.hero-lead {
  max-width: 700px;
  color: #475467;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-actions .primary-button,
.hero-actions .secondary-button {
  min-width: 168px;
}

.eyebrow-status::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px var(--green-soft);
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero-proof-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(202, 213, 226, 0.86);
  border-radius: 8px;
  color: #344054;
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.05);
  font-size: 13px;
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin-top: 24px;
}

.trust-strip div {
  position: relative;
  min-height: 126px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(190, 202, 217, 0.96);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.96));
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.09);
}

.trust-strip div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: #94a3b8;
}

.trust-strip div:nth-child(2)::before {
  background: var(--blue);
}

.trust-strip div:nth-child(3)::before {
  background: var(--brand);
}

.trust-strip div:nth-child(4)::before {
  background: var(--violet);
}

.trust-strip strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(202, 213, 226, 0.96);
  border-radius: 8px;
  color: #475467;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.trust-strip small {
  display: block;
  margin-top: 10px;
  padding-top: 11px;
  border-top: 1px solid rgba(202, 213, 226, 0.90);
  color: #667085;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.account-panel-redesign {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 252, 255, 0.95));
}

.account-panel-redesign::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), #f59e0b, var(--blue), var(--green));
}

.account-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.account-panel-head strong {
  color: #111827;
}

.signed-in-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.hero-stats-redesign {
  margin-top: 0;
  margin-bottom: 16px;
}

.plan-deck {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.plan-deck article {
  position: relative;
  min-height: 178px;
  padding: 18px 18px 16px;
  overflow: hidden;
  border: 1px solid rgba(202, 213, 226, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
  box-shadow: 0 16px 38px rgba(16, 24, 40, 0.08);
}

.plan-deck article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 4px solid var(--line-strong);
  border-radius: inherit;
}

.plan-deck article::after {
  content: "";
  display: block;
  height: 1px;
  margin: 14px 0 12px;
  background: linear-gradient(90deg, rgba(202, 213, 226, 0.95), rgba(202, 213, 226, 0));
}

.plan-deck article.featured {
  border-color: rgba(225, 48, 108, 0.24);
}

.plan-deck article.plus {
  border-color: rgba(124, 58, 237, 0.24);
}

.plan-deck article.featured::before {
  border-top-color: var(--brand);
}

.plan-deck article.plus::before {
  border-top-color: var(--violet);
}

.plan-deck article.featured::after {
  background: linear-gradient(90deg, rgba(225, 48, 108, 0.35), rgba(37, 99, 235, 0));
}

.plan-deck article.plus::after {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.36), rgba(245, 158, 11, 0));
}

.plan-deck span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(202, 213, 226, 0.90);
  border-radius: 8px;
  color: #475467;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.plan-deck strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 44px;
  line-height: 1;
}

.plan-deck p {
  margin: 12px 0 0;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.plan-deck small {
  display: block;
  margin-top: 2px;
  color: #667085;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.panel-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.suggest-panel-redesign,
.query-panel-redesign,
.side-panel-redesign,
.results-panel-redesign,
.seo-section {
  border-color: rgba(202, 213, 226, 0.95);
  background: rgba(255, 255, 255, 0.96);
}

.suggest-panel-redesign {
  position: relative;
  overflow: hidden;
  padding: 26px;
  box-shadow: 0 24px 62px rgba(16, 24, 40, 0.10);
}

.suggest-panel-redesign::before,
.results-panel-redesign::before {
  content: "";
  display: block;
  height: 1px;
  margin: -24px -24px 22px;
  background: linear-gradient(90deg, rgba(225, 48, 108, 0.72), rgba(37, 99, 235, 0.62), rgba(15, 159, 110, 0.46));
}

.suggest-form {
  align-items: end;
}

.suggestions-list:not(:empty) {
  padding-top: 2px;
}

.suggestion-button {
  min-height: 38px;
  border-color: rgba(37, 99, 235, 0.20);
  background: linear-gradient(180deg, #fff, rgba(37, 99, 235, 0.07));
}

.tool-grid-redesign {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
}

.query-panel-redesign textarea {
  min-height: 340px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  font-size: 16px;
}

.side-panel-redesign {
  position: sticky;
  top: 88px;
  align-self: start;
  min-height: 440px;
}

.side-panel-redesign .notice {
  border-color: rgba(225, 48, 108, 0.18);
  background: linear-gradient(180deg, rgba(255, 247, 251, 0.96), rgba(255, 252, 244, 0.90));
}

.results-panel-redesign {
  position: relative;
}

.results-panel-redesign::before {
  margin: 0;
}

.results-panel-redesign .results-toolbar {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.workspace-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 2px 0 12px;
  padding: 0 2px;
}

.workspace-intro h2 {
  margin-bottom: 0;
  font-size: 24px;
}

.workspace-intro p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  text-align: right;
}

.query-panel-redesign,
.side-panel-redesign {
  box-shadow: 0 24px 64px rgba(16, 24, 40, 0.10);
}

.query-panel-redesign .panel-heading,
.side-panel-redesign > div:first-child {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.results-panel-redesign {
  box-shadow: 0 24px 64px rgba(16, 24, 40, 0.10);
}

.table-wrap {
  background: #fff;
}

/* Reference-inspired production layout */
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
  padding-top: 34px;
}

.main-workspace {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.right-rail {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.hero-reference {
  display: block;
  padding: 8px 0 30px;
}

.hero-reference .hero-copy {
  min-height: 0;
  justify-content: flex-start;
}

.hero-reference h1 {
  max-width: 780px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(42px, 4.7vw, 62px);
  line-height: 1.04;
}

.hero-reference .hero-lead {
  max-width: 620px;
  color: #475467;
  font-size: 16px;
  line-height: 1.65;
}

.hero-reference .hero-actions {
  margin-top: 26px;
}

.primary-button svg,
.secondary-button svg {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reference-plans {
  gap: 14px;
  margin-bottom: 0;
}

.reference-plans article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 18px 14px;
  text-align: center;
  background: #fff;
}

.reference-plans article::after {
  display: none;
}

.reference-plans .plan-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(202, 213, 226, 0.90);
  border-radius: 50%;
  color: #475467;
  background: #f8fafc;
}

.reference-plans .plan-icon.blue {
  color: var(--blue);
  background: var(--blue-soft);
  border-color: rgba(37, 99, 235, 0.18);
}

.reference-plans .plan-icon.pink {
  color: var(--brand);
  background: var(--brand-soft);
  border-color: rgba(225, 48, 108, 0.20);
}

.reference-plans .plan-icon.gold {
  color: #b7791f;
  background: rgba(245, 158, 11, 0.10);
  border-color: rgba(245, 158, 11, 0.24);
}

.reference-plans .plan-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reference-plans small {
  display: block;
  width: 100%;
  margin: 12px 0 6px;
  color: #475467;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.reference-plans strong {
  display: block;
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.reference-plans em {
  display: block;
  margin-top: 5px;
  color: #475467;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.reference-plans p {
  margin-top: 12px;
  color: #667085;
  font-size: 12px;
  line-height: 1.35;
}

.reference-checker {
  padding: 18px;
}

.reference-checker .panel-heading {
  display: flex;
  align-items: flex-start;
  padding-bottom: 14px;
}

.reference-checker .panel-heading h2,
.reference-results h2,
.reference-suggest h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.reference-checker .panel-heading p {
  color: #101828;
  font-size: 13px;
  font-weight: 900;
}

.reference-checker .panel-heading span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.checker-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 18px;
  align-items: end;
}

.reference-checker textarea {
  min-height: 148px;
  margin: 0;
}

.reference-checker .controls {
  grid-template-columns: 1fr;
}

.reference-checker .controls .primary-button,
.reference-checker .controls .secondary-button {
  width: 100%;
}

.reference-results {
  margin-top: 0;
}

.reference-results .results-toolbar {
  padding: 16px 18px;
}

.reference-results table {
  min-width: 840px;
}

.reference-results .empty-row td {
  height: 132px;
}

.reference-suggest {
  margin-bottom: 0;
}

.reference-auth,
.reference-status {
  width: 100%;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.09);
}

.reference-auth {
  align-self: auto;
}

.reference-auth .auth-tabs {
  margin-bottom: 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.reference-auth .auth-tab {
  border-radius: 0;
}

.reference-auth .auth-tab.active {
  border-color: transparent;
  border-bottom: 2px solid var(--brand);
  color: #101828;
  box-shadow: none;
}

.reference-auth input {
  min-height: 44px;
}

.reference-auth .primary-button,
.reference-auth .secondary-button {
  width: 100%;
}

.buy-button {
  margin-top: 12px;
}

.reference-status {
  min-height: auto;
}

.reference-status .status-box {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.rail-copy {
  display: grid;
  gap: 4px;
}

.rail-copy strong,
.progress-row strong {
  color: #344054;
  font-size: 13px;
}

.rail-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.primary-button:active,
.secondary-button:active,
.icon-button:active,
.nav-cta:active {
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero,
  .tool-grid,
  .product-layout,
  .checker-grid {
    grid-template-columns: 1fr;
  }

  .right-rail {
    position: static;
    order: -1;
  }

  .hero-copy {
    min-height: auto;
  }

  .account-panel {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .plan-deck,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workspace-intro {
    display: grid;
  }

  .workspace-intro p {
    max-width: none;
    text-align: left;
  }

  .side-panel-redesign {
    position: static;
    min-height: auto;
  }

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

  .suggest-form {
    grid-template-columns: 1fr;
  }

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

  .blog-layout {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .blog-sidebar {
    position: static;
  }

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

  .blog-hero-art {
    min-height: 150px;
  }

  .blog-tool-cta {
    display: grid;
  }

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

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .app-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .hero {
    gap: 14px;
    padding-top: 12px;
  }

  .site-nav {
    display: grid;
    position: static;
  }

  .site-nav div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .nav-cta {
    width: 100%;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-proof-list,
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .plan-deck,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .reference-plans article {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .hero-reference h1 {
    font-size: 38px;
  }

  .blog-hero,
  .blog-article-head,
  .blog-content,
  .blog-faq,
  .blog-tool-cta {
    padding: 22px;
  }

  .blog-hero-reference {
    padding: 24px;
  }

  .blog-card-body {
    grid-template-columns: 1fr;
  }

  .blog-card-icon {
    width: 72px;
    height: 72px;
  }

  .blog-tool-cta {
    margin: 10px 22px 22px;
  }

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

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .controls,
  .panel-heading,
  .results-toolbar,
  .toolbar-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .toolbar-actions select {
    width: 100%;
  }

  th,
  td {
    padding: 13px 16px;
  }
}


/* ==========================================================================
   Blog Yazı Detay Sayfası (yeniden tasarım)
   ========================================================================== */

.post-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(225, 48, 108, 0.12);
  z-index: 80;
  pointer-events: none;
}

.post-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #e1306c 0%, #f56040 50%, #f77737 100%);
  transition: width 0.12s linear;
  box-shadow: 0 0 12px rgba(225, 48, 108, 0.45);
}

.post-article {
  margin-top: 18px;
  display: block;
}

.post-hero {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 36px 38px 40px;
  background:
    radial-gradient(circle at 88% 18%, rgba(247, 119, 55, 0.18) 0, rgba(247, 119, 55, 0) 55%),
    radial-gradient(circle at 12% 100%, rgba(124, 58, 237, 0.16) 0, rgba(124, 58, 237, 0) 55%),
    linear-gradient(135deg, #fff 0%, #fdf4f7 50%, #f6f3ff 100%);
  border: 1px solid rgba(217, 224, 234, 0.94);
  box-shadow: var(--shadow);
}

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

.post-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.post-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.post-breadcrumb a:hover {
  color: var(--brand);
}

.post-breadcrumb .current {
  color: var(--text);
  font-weight: 600;
}

.post-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.14), rgba(124, 58, 237, 0.14));
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.post-hero h1 {
  margin: 14px 0 14px;
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: -0.4px;
  color: var(--ink);
}

.post-lead {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.65;
  color: #475467;
  max-width: 680px;
}

.post-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px dashed rgba(16, 24, 40, 0.12);
}

.post-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-author-avatar {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #e1306c, #7c3aed);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 18px rgba(225, 48, 108, 0.28);
}

.post-author strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  line-height: 1.2;
}

.post-author-role {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
}

.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12.5px;
  color: #344054;
  font-weight: 500;
}

.post-chip svg {
  width: 14px;
  height: 14px;
  color: var(--brand);
}

.post-hero-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  pointer-events: none;
  opacity: 0.85;
}

.post-hero-bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
}

.post-hero-bubble-1 {
  top: -40px;
  right: -30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(247, 119, 55, 0.32), rgba(247, 119, 55, 0) 70%);
}

.post-hero-bubble-2 {
  bottom: -50px;
  right: 80px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.28), rgba(124, 58, 237, 0) 70%);
}

.post-hero-bubble-3 {
  top: 40%;
  right: 200px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(225, 48, 108, 0.30), rgba(225, 48, 108, 0) 70%);
}

/* Layout */
.post-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  margin-top: 24px;
  align-items: start;
}

.post-aside {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 16px;
}

.post-toc,
.post-share,
.post-side-cta {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
}

.post-toc h2,
.post-share h2,
.post-side-cta h2 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
}

.post-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}

.post-toc li {
  counter-increment: toc;
  margin: 0;
}

.post-toc a {
  position: relative;
  display: block;
  padding: 9px 10px 9px 36px;
  font-size: 14px;
  color: #475467;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}

.post-toc a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 10px;
  top: 9px;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  opacity: 0.7;
  letter-spacing: 0.3px;
}

.post-toc a:hover {
  background: var(--soft);
  color: var(--text);
}

.post-toc a.active {
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 600;
}

.post-toc a.active::before {
  opacity: 1;
}

.post-share-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.share-btn {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: #475467;
  cursor: pointer;
  transition: transform 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.share-btn svg {
  width: 16px;
  height: 16px;
}

.share-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.1);
}

.share-twitter:hover { color: #000; border-color: #000; }
.share-facebook:hover { color: #1877f2; border-color: #1877f2; }
.share-whatsapp:hover { color: #25d366; border-color: #25d366; }
.share-copy:hover { color: var(--brand); border-color: var(--brand); }

.share-copy-tooltip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 8px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}

.share-copy.copied .share-copy-tooltip {
  opacity: 1;
}

.post-side-cta {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.07), rgba(124, 58, 237, 0.07));
  border-color: rgba(225, 48, 108, 0.2);
}

.post-side-cta p {
  margin: 0 0 14px;
  font-size: 13.5px;
  color: #475467;
  line-height: 1.55;
}

.post-side-cta .primary-button {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Body */
.post-body {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 38px 44px 30px;
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.post-content {
  font-size: 16.5px;
  line-height: 1.78;
  color: #344054;
}

.post-content > p:first-of-type::first-letter,
.post-content > p.lead::first-letter {
  float: left;
  font-size: 56px;
  line-height: 0.92;
  font-weight: 700;
  margin: 6px 12px 0 0;
  background: linear-gradient(135deg, #e1306c, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.post-content p {
  margin: 0 0 20px;
}

.post-content p.lead {
  font-size: 18px;
  color: #1d2939;
  line-height: 1.7;
}

.post-content h2 {
  position: relative;
  margin: 36px 0 14px;
  padding-top: 6px;
  font-size: 26px;
  line-height: 1.3;
  color: var(--ink);
  scroll-margin-top: 90px;
  letter-spacing: -0.2px;
}

.post-content h2 .anchor-mark {
  display: inline-block;
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #e1306c, #7c3aed);
  margin-bottom: 12px;
  vertical-align: middle;
  transform: translateY(-6px);
}

.post-content h2::after {
  content: "";
  display: block;
  margin-top: 14px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 224, 234, 0.8), transparent);
}

.post-content strong {
  color: var(--ink);
}

.post-content a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-decoration-color: rgba(225, 48, 108, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s;
}

.post-content a:hover {
  text-decoration-color: var(--brand);
}

/* FAQ */
.post-faq {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.post-faq header {
  margin-bottom: 16px;
}

.post-faq .eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.post-faq h2 {
  margin: 0;
  font-size: 24px;
  color: var(--ink);
}

.post-faq-list {
  display: grid;
  gap: 10px;
}

.post-faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-soft);
  overflow: hidden;
  transition: border-color 0.15s, background 0.15s;
}

.post-faq details[open] {
  border-color: rgba(225, 48, 108, 0.32);
  background: #fff;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.05);
}

.post-faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

.post-faq summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s, color 0.2s;
}

.post-faq details[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--brand);
}

.post-faq details p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14.5px;
  color: #475467;
  line-height: 1.65;
}

/* CTA */
.post-cta {
  position: relative;
  margin-top: 36px;
  overflow: hidden;
  border-radius: 18px;
  padding: 32px 36px;
  background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 50%, #4a1f4f 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}

.post-cta-glow {
  position: absolute;
  top: -60%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(225, 48, 108, 0.4) 0%, rgba(225, 48, 108, 0) 60%);
  pointer-events: none;
}

.post-cta-content {
  position: relative;
  z-index: 2;
}

.post-cta .eyebrow {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.post-cta h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
}

.post-cta p {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.post-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.post-cta .primary-button {
  background: #fff;
  color: var(--ink);
}

.post-cta .primary-button:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
}

.post-cta .secondary-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s;
}

.post-cta .secondary-link:hover {
  color: #fff;
}

.post-cta-art {
  position: relative;
  height: 160px;
}

.cta-card {
  position: absolute;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.cta-card-1 {
  top: 8px;
  left: 8px;
  transform: rotate(-6deg);
}

.cta-card-2 {
  top: 56px;
  left: 70px;
  transform: rotate(3deg);
}

.cta-card-3 {
  top: 100px;
  left: 30px;
  background: linear-gradient(135deg, #0f9f6e, #16c098);
  color: #fff;
  transform: rotate(-3deg);
}

/* Related */
.post-related {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.post-related header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.post-related h2 {
  margin: 0;
  font-size: 22px;
  color: var(--ink);
}

.post-related header a {
  font-size: 14px;
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: none;
}

.post-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.post-related-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-soft);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.post-related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 48, 108, 0.32);
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.08);
}

.post-related-tag {
  align-self: flex-start;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.post-related-card h3 {
  margin: 4px 0 0;
  font-size: 15.5px;
  line-height: 1.4;
  color: var(--ink);
}

.post-related-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-related-foot {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.post-related-foot span:last-child {
  color: var(--brand-dark);
  font-weight: 600;
}

/* Bottom nav */
.post-bottom-nav {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.post-bottom-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
}

.post-bottom-back:hover {
  color: var(--brand-dark);
}

.post-bottom-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.post-bottom-top:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .post-layout {
    grid-template-columns: 1fr;
  }
  .post-aside {
    position: static;
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 14px;
  }
  .post-side-cta {
    grid-column: 1 / -1;
  }
  .post-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .post-hero {
    padding: 24px 22px 28px;
    border-radius: 14px;
  }
  .post-hero h1 {
    font-size: 28px;
  }
  .post-lead {
    font-size: 15.5px;
  }
  .post-hero-art {
    display: none;
  }
  .post-byline {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .post-aside {
    grid-template-columns: 1fr;
  }
  .post-body {
    padding: 24px 22px 22px;
    border-radius: 14px;
  }
  .post-content {
    font-size: 15.5px;
  }
  .post-content > p:first-of-type::first-letter,
  .post-content > p.lead::first-letter {
    font-size: 44px;
  }
  .post-content h2 {
    font-size: 21px;
    margin-top: 28px;
  }
  .post-cta {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }
  .post-cta-art {
    display: none;
  }
  .post-related-grid {
    grid-template-columns: 1fr;
  }
}
