:root {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #263445;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  --blue: #2465d6;
  --dark: #182b45;
  --muted: #667487;
  --border: #dce2e9;
  --content-width: 1120px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: var(--blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 21px;
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
}
button:hover,
.button:hover {
  background: #1954ba;
  text-decoration: none;
}
button:disabled {
  opacity: 0.65;
  cursor: wait;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #94baff;
  outline-offset: 3px;
}
input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #bcc7d5;
  background: #fff;
  color: var(--dark);
  border-radius: 5px;
  padding: 11px 13px;
  font-size: 16px;
}
input::placeholder {
  color: #8792a1;
}
label {
  font-weight: 600;
  font-size: 14px;
}
h1,
h2,
h3 {
  color: var(--dark);
  line-height: 1.25;
  margin: 0 0 18px;
}
h1 {
  font-size: 34px;
  letter-spacing: -0.8px;
}
h2 {
  font-size: 25px;
  letter-spacing: -0.4px;
}
h3 {
  font-size: 17px;
}
p {
  margin: 0 0 18px;
}
.container {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}
.reading {
  max-width: none;
}
.narrow {
  max-width: none;
}
.wide {
  max-width: none;
  width: min(var(--content-width), calc(100% - 48px));
}
.site-header {
  border-bottom: 1px solid #e9edf2;
  background: #fff;
}
.page-home .site-header {
  position: absolute;
  z-index: 5;
  width: 100%;
  border-bottom: 0;
  background: transparent;
}
.header-inner {
  height: 83px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  font-size: 29px;
  letter-spacing: -1.2px;
  color: var(--blue);
}
.brand:hover {
  text-decoration: none;
}
.brand svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-header nav {
  display: flex;
  gap: 30px;
}
.site-header nav a {
  font-size: 15px;
  color: #4b5869;
  font-weight: 500;
}
.hero {
  text-align: center;
  padding: 145px 0 64px;
  background: #f4f8ff;
  border-bottom: 1px solid #e9edf2;
}
.hero-inner {
  max-width: none;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.7px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: clamp(42px, 5vw, 62px);
  letter-spacing: -2.4px;
  line-height: 1.08;
}
.hero-description {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 35px;
}
.shortener {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 9px;
  box-shadow: 0 18px 50px rgba(37, 74, 126, 0.1);
}
.url-row {
  display: flex;
  gap: 12px;
}
.url-row input {
  flex: 1;
}
.url-row > button,
.shorten-action {
  flex-shrink: 0;
}
.shorten-action {
  position: relative;
}
.shorten-action > button {
  height: 100%;
}
.hero .url-row > input,
.hero .shorten-action > button {
  min-height: 58px;
}
.hero .url-row > input {
  border: 0;
  padding-inline: 16px;
}
.hero .url-row > input:focus {
  outline: 0;
  box-shadow: inset 0 0 0 2px #9bbcf4;
}
.hero .shorten-action > button {
  padding-inline: 25px;
  border-radius: 8px;
}
.turnstile-popover {
  position: absolute;
  z-index: 20;
  top: calc(100% + 14px);
  right: 0;
  width: 330px;
  min-height: 92px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(24, 43, 69, 0.18);
}
.turnstile-popover .turnstile {
  margin: 0;
  min-height: 65px;
}
.turnstile-popover-arrow {
  position: absolute;
  top: -7px;
  right: 30px;
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  background: #fff;
}
.hero-footnote {
  font-size: 13px;
  color: #778293;
  margin: 17px 0 0;
}
.hero-proof {
  display: flex;
  justify-content: center;
  gap: 12px 27px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: #52637a;
  font-size: 13px;
}
.hero-proof b {
  margin-right: 5px;
  color: var(--blue);
}
.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding-top: 53px;
  padding-bottom: 53px;
  text-align: center;
}
.feature-icon {
  display: block;
  font-size: 29px;
  color: var(--blue);
  height: 45px;
}
.feature h2 {
  font-size: 18px;
  margin: 10px 0;
}
.feature p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.how-section {
  padding: 45px 0 50px;
  background: #f8fafc;
  border-block: 1px solid #e9edf2;
}
.how-section h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 24px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.step {
  display: flex;
  gap: 14px;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 31px;
  height: 31px;
  font-size: 14px;
  color: var(--blue);
  border: 1px solid #cbdaf2;
  border-radius: 50%;
  background: #fff;
  font-weight: 600;
}
.step h3 {
  margin: 3px 0 8px;
  font-size: 16px;
}
.step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.seo {
  padding-top: 58px;
  padding-bottom: 24px;
}
.seo > *,
.faq > * {
  max-width: 760px;
  margin-inline: auto;
}
.seo {
  text-align: center;
}
.seo h2 {
  font-size: 24px;
}
.seo p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.faq {
  padding-top: 18px;
  padding-bottom: 66px;
}
.faq h2 {
  font-size: 24px;
  margin-bottom: 23px;
  text-align: center;
}
details {
  border-bottom: 1px solid var(--border);
}
summary {
  position: relative;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 26px 16px 0;
  list-style: none;
  color: #344357;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: '+';
  position: absolute;
  right: 4px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 400;
  top: 10px;
}
details[open] summary:after {
  content: '−';
}
details p {
  font-size: 14px;
  color: var(--muted);
  padding-right: 25px;
  line-height: 1.8;
}
.site-footer {
  border-top: 1px solid #e3e8ef;
  background: #fafbfc;
  padding: 29px 0;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 23px;
}
.site-footer nav a {
  font-size: 13px;
  color: #667487;
}
.site-footer p {
  font-size: 12px;
  color: #84909e;
  margin: 0;
}
.page {
  padding-top: 48px;
  padding-bottom: 70px;
  min-height: calc(100vh - 250px);
}
.article > * {
  max-width: 760px;
}
.form-panel {
  max-width: 560px;
}
.lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 27px;
}
.panel {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  margin: 22px 0;
}
.panel h2 {
  font-size: 21px;
}
.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.stack p {
  margin: 0;
}
.stack button {
  align-self: flex-start;
}
.stack label:not(:first-child) {
  margin-top: 5px;
}
.notice {
  padding: 13px 16px;
  background: #eff7f1;
  border: 1px solid #c9e3d0;
  border-radius: 5px;
  font-size: 14px;
  color: #27603b;
  overflow-wrap: anywhere;
}
.notice.warning {
  background: #fff7e9;
  color: #81571c;
  border-color: #ebd6b4;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 13px;
}
.text-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
}
.text-button:hover {
  background: none;
  text-decoration: underline;
}
.secondary {
  background: #fff;
  color: #354b68;
  border-color: #bdc9d7;
}
.secondary:hover {
  background: #f2f5f9;
}
.danger {
  color: #b33a3a;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 9px;
}
.checkbox input {
  width: 17px;
  height: 17px;
}
.remove-form {
  margin-top: 22px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.remove-form button {
  margin-top: 12px;
}
.result-overlay {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(14, 30, 53, 0.58);
  backdrop-filter: blur(5px);
  animation: modal-fade 180ms ease-out;
}
.result-dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 38px;
  border-radius: 16px;
  background: #fff;
  text-align: center;
  box-shadow: 0 28px 80px rgba(7, 21, 42, 0.28);
  animation: modal-rise 260ms ease-out;
}
.result-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f2f5f8;
  color: #667487;
  font-size: 24px;
  font-weight: 400;
}
.result-close:hover {
  background: #e8edf3;
  color: var(--dark);
}
.result-success-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #eaf8ef;
  color: #22904d;
  animation: check-pop 420ms cubic-bezier(0.2, 0.9, 0.3, 1.25);
}
.result-success-icon svg {
  width: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.result-kicker {
  margin-bottom: 7px;
  color: #27804a;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.result-dialog h2 {
  margin-bottom: 9px;
  font-size: 30px;
}
.result-description {
  margin-bottom: 24px;
  color: var(--muted);
}
.result-url-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid #d7e0eb;
  border-radius: 9px;
  background: #f7f9fc;
}
.result-url-box a {
  flex: 1;
  min-width: 0;
  padding-left: 10px;
  color: var(--dark);
  font-size: 19px;
  font-weight: 650;
  text-align: left;
  overflow-wrap: anywhere;
}
.result-url-box button {
  flex: 0 0 auto;
}
.result-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.claim-panel {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #dfe6ee;
  border-radius: 10px;
  background: #f8fafc;
  text-align: left;
  animation: claim-reveal 220ms ease-out;
}
.claim-panel h3 {
  margin-bottom: 5px;
  font-size: 19px;
}
.claim-panel > p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}
#claim-message {
  margin: 12px 0 0;
  font-size: 14px;
}
.claim-success {
  color: #247143;
}
@keyframes modal-fade {
  from { opacity: 0; }
}
@keyframes modal-rise {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
}
@keyframes check-pop {
  from { opacity: 0; transform: scale(0.45); }
}
@keyframes claim-reveal {
  from { opacity: 0; transform: translateY(-8px); }
}
.form-error {
  font-size: 14px;
  color: #b33232;
  margin: 12px 0 0;
}
.compact-page {
  max-width: 720px;
}
.centered-panel {
  padding: 48px;
  text-align: center;
}
.centered-panel .lead {
  max-width: 540px;
  margin: 14px auto 28px;
}
.turnstile {
  margin-top: 15px;
  min-height: 65px;
}
.link-details {
  margin: 0;
}
.link-details dt {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 19px;
}
.link-details dt:first-child {
  margin-top: 0;
}
.link-details dd {
  margin: 4px 0 0;
}
.link-details .count {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
}
.link-details + .small {
  margin-top: 20px;
  margin-bottom: 0;
}
.break {
  overflow-wrap: anywhere;
}
.badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 4px;
  font-size: 12px;
  text-transform: capitalize;
  background: #eef1f5;
  color: #5c6879;
}
.badge.active {
  background: #edf7f0;
  color: #2b6f42;
}
.badge.blocked {
  background: #fcefee;
  color: #a63632;
}
.badge.disabled {
  background: #fff5df;
  color: #88651b;
}
.title-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: baseline;
}
.admin-header {
  border-bottom: 1px solid #e3e8ef;
  background: #fff;
}
.admin-header-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 76px;
}
.admin-brand {
  font-size: 24px;
}
.admin-brand span {
  margin-left: 2px;
  padding-left: 11px;
  border-left: 1px solid #ced7e2;
  color: #6b7889;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}
.admin-header nav {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 14px;
}
.admin-header nav > a,
.admin-logout {
  padding: 8px 13px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #4e5c6e;
  font-size: 14px;
  font-weight: 600;
}
.admin-header nav > a:hover,
.admin-header nav > a[aria-current='page'],
.admin-logout:hover {
  background: #eef4fd;
  color: var(--blue);
  text-decoration: none;
}
.admin-header nav form {
  display: flex;
  margin-left: 5px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}
.page-login {
  background: #f4f7fb;
}
.page-login main {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}
.page-login .page {
  width: min(440px, 100%);
  min-height: 0;
  padding: 0;
}
.page-login h1 {
  margin: 14px 0 22px;
  text-align: center;
  font-size: 27px;
}
.page-login .form-panel {
  max-width: none;
  margin: 0;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(31, 53, 84, 0.1);
}
.page-login .form-panel button {
  width: 100%;
  margin-top: 6px;
}
.filter-row {
  display: flex;
  gap: 12px;
  margin: 22px 0;
}
.filter-row input {
  flex: 1;
}
.filter-row select {
  width: 160px;
}
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 5px;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
  text-align: left;
}
th {
  background: #f6f8fa;
  font-size: 12px;
  color: #56657a;
  font-weight: 600;
  white-space: nowrap;
}
th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid #e6ebf1;
  vertical-align: top;
}
tbody tr:last-child td {
  border-bottom: 0;
}
td small {
  display: block;
  color: var(--muted);
}
.owner-email {
  white-space: nowrap;
}
.muted {
  color: var(--muted);
}
.admin-link-meta {
  display: flex;
  gap: 12px;
  margin: 22px 0;
}
.admin-link-meta > div {
  min-width: 220px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
}
.admin-link-meta dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.admin-link-meta dd {
  margin: 0;
  font-weight: 600;
}
.admin-link-meta dd small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 400;
}
.nowrap {
  white-space: nowrap;
}
.destination-cell {
  min-width: 180px;
  max-width: 290px;
  overflow-wrap: anywhere;
}
.report-message {
  min-width: 150px;
  max-width: 260px;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}
.small-button {
  font-size: 12px;
  padding: 5px 10px;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 24px;
  font-size: 14px;
}
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-index-header {
  max-width: 720px;
  margin-bottom: 38px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.blog-entry {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.blog-thumbnail {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #eef4ff;
}
.blog-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  transition: transform 220ms ease;
}
.blog-thumbnail:hover img {
  transform: scale(1.015);
}
.blog-entry-body {
  padding: 24px;
}
.article-category {
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.blog-entry h2 {
  margin: 10px 0 12px;
  font-size: 22px;
}
.blog-entry h2 a {
  color: var(--dark);
}
.blog-entry p {
  color: var(--muted);
}
.blog-entry-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 17px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  color: #7a8798;
  font-size: 13px;
}
.breadcrumbs span:last-child {
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-header {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
}
.article-header h1 {
  margin: 14px 0 17px;
  font-size: clamp(38px, 5vw, 56px);
  letter-spacing: -1.8px;
}
.article-lead {
  margin: 0 auto 21px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}
.article-meta {
  display: flex;
  justify-content: center;
  gap: 9px 22px;
  flex-wrap: wrap;
  color: #758295;
  font-size: 13px;
}
.article-hero-image {
  max-width: 980px;
  margin: 0 auto 48px;
}
.article-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #eef4ff;
}
.article-hero-image figcaption {
  margin-top: 10px;
  color: #7b8797;
  font-size: 12px;
  text-align: center;
}
.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 720px);
  justify-content: center;
  gap: 54px;
  align-items: start;
}
.article-sidebar {
  position: sticky;
  top: 24px;
}
.toc {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #f8fafc;
}
.toc strong {
  font-size: 13px;
}
.toc ol {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.toc li + li {
  margin-top: 9px;
}
.toc a {
  display: block;
  color: #536276;
  font-size: 13px;
  line-height: 1.45;
}
.toc-depth-3 {
  padding-left: 12px;
}
.article-content {
  min-width: 0;
  margin-top: 0;
}
.prose.article-content {
  margin-top: 0;
}
.prose {
  margin-top: 35px;
  line-height: 1.85;
}
.legal-header,
.legal-prose {
  max-width: 820px;
  margin-inline: auto;
}
.legal-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-prose {
  margin-top: 35px;
}
.legal-prose h2 {
  scroll-margin-top: 24px;
}
.legal-prose ul {
  padding-left: 24px;
}
.legal-prose li + li {
  margin-top: 5px;
}
.preview-button {
  margin: 0 0 22px;
}
.email-preview-shell {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}
.email-preview-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  color: #526176;
  font-size: 14px;
}
.email-preview-canvas {
  padding: 42px 22px;
  background: #f3f6fb;
}
.email-card {
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #dce5f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(32, 54, 86, 0.08);
}
.email-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 24px 32px;
  border-bottom: 1px solid #e7edf4;
  color: var(--blue);
  font-size: 25px;
  font-weight: 750;
}
.email-brand svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.email-card-content {
  padding: 38px 32px 32px;
}
.email-card-content h2 {
  font-size: 30px;
}
.email-card-content > p:not(.email-kicker, .email-expiry) {
  color: #627187;
}
.email-kicker {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.email-link {
  margin: 24px 0 26px;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f6f8fb;
  color: #31445f;
  overflow-wrap: anywhere;
}
.email-expiry {
  margin: 25px 0 0;
  color: #748196;
  font-size: 13px;
}
.email-card footer {
  padding: 20px 32px;
  border-top: 1px solid #e7edf4;
  background: #f9fbfd;
  color: #8793a4;
  font-size: 12px;
}
.status-page,
.error-page {
  display: grid;
  place-items: center;
}
.status-card,
.error-card {
  width: 100%;
  max-width: 720px;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  background: #fff;
  box-shadow: 0 15px 45px rgba(31, 53, 84, 0.08);
}
.status-illustration {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #fff2f1;
  color: #bf3d38;
}
.status-card.disabled .status-illustration {
  background: #fff7e6;
  color: #9a6a14;
}
.status-illustration svg {
  width: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.status-slash {
  stroke-width: 5;
}
.status-label {
  margin-bottom: 10px;
  color: #a03b37;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-card.disabled .status-label {
  color: #886018;
}
.status-card h1 {
  font-size: 38px;
}
.status-card .lead,
.error-card .lead {
  max-width: 560px;
  margin-inline: auto;
}
.status-actions,
.error-card .button-row {
  justify-content: center;
}
.status-help {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.error-visual {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 210px;
  height: 110px;
  margin-bottom: 22px;
  color: #dfe8f7;
}
.error-visual span {
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -8px;
}
.error-visual svg {
  position: absolute;
  right: -8px;
  bottom: -3px;
  width: 62px;
  padding: 10px;
  border-radius: 50%;
  background: #fff;
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
}
.error-card h1 {
  margin-bottom: 13px;
  font-size: 34px;
}
.prose h2 {
  margin-top: 32px;
  font-size: 24px;
}
.prose code {
  background: #f0f3f7;
  padding: 2px 5px;
  border-radius: 3px;
}
.error-page h1 {
  font-size: 28px;
  margin-bottom: 27px;
}
.skip {
  position: absolute;
  left: 16px;
  top: -80px;
  background: #fff;
  padding: 10px;
  z-index: 10;
}
.skip:focus {
  top: 10px;
}
.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(430px, calc(100% - 36px));
  padding: 12px 13px 12px 16px;
  border: 1px solid #d8e1ed;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(28, 48, 76, 0.13);
  backdrop-filter: blur(8px);
}
.cookie-banner p {
  margin: 0;
  color: #56657a;
  font-size: 12px;
  line-height: 1.5;
}
.cookie-banner a {
  white-space: nowrap;
}
.cookie-accept {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 12px;
}
.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;
}
[hidden] {
  display: none !important;
}
@media (max-width: 720px) {
  .container,
  .wide {
    width: calc(100% - 32px);
  }
  .header-inner {
    height: 70px;
  }
  .brand {
    font-size: 26px;
  }
  .brand svg {
    width: 25px;
    height: 25px;
  }
  .site-header nav {
    gap: 20px;
  }
  .site-header nav a:first-child {
    display: none;
  }
  .hero {
    padding: 122px 0 42px;
  }
  .hero h1 {
    font-size: 35px;
    letter-spacing: -1px;
  }
  .hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .shortener {
    padding: 10px;
  }
  .url-row {
    flex-direction: column;
    gap: 10px;
  }
  .url-row > button,
  .shorten-action,
  .shorten-action > button {
    width: 100%;
  }
  .turnstile-popover {
    right: 50%;
    width: min(330px, calc(100vw - 52px));
    transform: translateX(50%);
  }
  .hero-footnote {
    font-size: 12px;
  }
  .hero-proof {
    gap: 8px 16px;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-block: 34px;
  }
  .feature-icon {
    height: 32px;
    font-size: 25px;
  }
  .feature h2 {
    margin: 8px 0;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 330px;
    margin: auto;
  }
  .how-section {
    padding: 32px 0;
  }
  .how-section h2 {
    margin-bottom: 25px;
  }
  .seo {
    padding-top: 37px;
  }
  .faq {
    padding-bottom: 40px;
  }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .footer-top nav {
    order: 1;
  }
  .footer-top > p {
    order: 2;
  }
  .site-footer nav {
    gap: 10px 20px;
  }
  .page {
    padding-top: 32px;
    padding-bottom: 45px;
  }
  .status-card,
  .error-card {
    padding: 32px 20px;
  }
  .status-card h1,
  .error-card h1 {
    font-size: 29px;
  }
  .email-preview-canvas {
    padding: 22px 10px;
  }
  .email-card-content,
  .email-brand,
  .email-card footer {
    padding-inline: 20px;
  }
  .page h1 {
    font-size: 29px;
  }
  .panel {
    padding: 19px;
  }
  .admin-header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 12px;
  }
  .admin-header nav {
    width: 100%;
    gap: 2px;
    overflow-x: auto;
  }
  .admin-header nav > a,
  .admin-logout {
    padding: 7px 10px;
  }
  .admin-header nav form {
    margin-left: auto;
    padding-left: 8px;
  }
  .filter-row {
    flex-wrap: wrap;
  }
  .filter-row input {
    flex-basis: 100%;
  }
  .filter-row select {
    flex: 1;
  }
  .result-overlay {
    align-items: center;
    padding: 12px;
  }
  .result-dialog {
    max-height: calc(100vh - 24px);
    padding: 32px 18px 22px;
  }
  .result-success-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 13px;
  }
  .result-dialog h2 {
    font-size: 25px;
  }
  .result-url-box {
    align-items: center;
    flex-direction: row;
  }
  .result-url-box a {
    padding: 5px;
    font-size: 14px;
    text-align: left;
  }
  .result-url-box button {
    width: auto;
    padding: 10px 13px;
  }
  .result-actions {
    flex-direction: column;
    gap: 9px;
  }
  .result-actions button {
    width: 100%;
  }
  .claim-panel {
    padding: 18px;
  }
  .lead {
    font-size: 16px;
  }
  .title-row {
    flex-wrap: wrap;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .article-header h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }
  .article-lead {
    font-size: 17px;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .article-sidebar {
    position: static;
  }
  .admin-link-meta {
    flex-direction: column;
  }
  .admin-link-meta > div {
    min-width: 0;
  }
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .result-overlay,
  .result-dialog,
  .result-success-icon,
  .claim-panel {
    animation: none;
  }
}
