:root {
  color-scheme: light;

  --paper: #f5e7cf;
  --paper-light: #fff8e9;
  --paper-bright: #fffdf7;
  --paper-deep: #ead4b5;

  --ink: #283532;
  --ink-strong: #172523;
  --muted: #68746f;

  --teal: #026670;
  --teal-dark: #014c53;
  --teal-soft: #dff4ec;

  --orange: #e87847;
  --orange-soft: #f8d3bd;

  --yellow: #fce181;
  --yellow-soft: #fff4be;

  --success: #3f8367;
  --error: #b34e42;
  --warning: #936215;

  --line: rgb(39 51 50 / 32%);
  --line-soft: rgb(39 51 50 / 16%);

  --shadow-small:
    2px 3px 0 rgb(39 51 50 / 8%);

  --shadow-medium:
    5px 7px 0 rgb(39 51 50 / 9%);

  --shadow-large:
    9px 12px 0 rgb(39 51 50 / 8%);

  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(
      circle at 10% 5%,
      rgb(255 255 255 / 55%),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 4%,
      rgb(252 225 129 / 23%),
      transparent 23%
    ),
    repeating-linear-gradient(
      0deg,
      rgb(39 51 50 / 1.5%) 0,
      rgb(39 51 50 / 1.5%) 1px,
      transparent 1px,
      transparent 6px
    ),
    var(--paper);
  color: var(--ink);
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent 0,
      rgb(255 255 255 / 15%) 50%,
      transparent 100%
    );
  content: "";
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline:
    3px solid
    rgb(2 102 112 / 25%);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width:
    min(
      calc(100% - 40px),
      var(--container)
    );
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 660px;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.privacy-heading h2,
.final-cta h2 {
  margin: 9px 0 0;
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size:
    clamp(32px, 4vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.section-heading > p:last-child,
.privacy-heading > p:last-child,
.final-cta > div > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sketch-underline {
  display: block;
  width: 132px;
  height: 12px;
  margin-top: 17px;
  border-top:
    4px solid var(--orange);
  border-radius: 50%;
  transform: rotate(-1.5deg);
}

.sketch-underline-small {
  width: 86px;
  margin-top: 13px;
  border-top-width: 3px;
}

.sketch-panel {
  position: relative;
  border:
    1.4px solid var(--line);
  border-radius:
    22px 18px 25px 19px;
  background:
    rgb(255 250 240 / 74%);
  box-shadow: var(--shadow-medium);
}

.sketch-panel::after {
  position: absolute;
  z-index: 0;
  inset: 4px -4px -4px 4px;
  border:
    1px solid
    rgb(39 51 50 / 8%);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.sketch-panel > * {
  position: relative;
  z-index: 1;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border:
    1.3px solid var(--line);
  border-radius:
    9px 12px 8px 11px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-small);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow:
    3px 5px 0
    rgb(39 51 50 / 10%);
}

.button:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: var(--shadow-small);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.button-primary {
  border-color: var(--teal-dark);
  background: var(--teal);
  color: #fffdf8;
}

.button-primary:hover:not(:disabled) {
  background: var(--teal-dark);
}

.button-secondary {
  background:
    rgb(255 253 247 / 78%);
  color: var(--ink-strong);
}

.button-secondary:hover:not(:disabled) {
  border-color: var(--teal);
  color: var(--teal);
}

.button-large {
  min-height: 52px;
  padding-inline: 23px;
}

/* Header */

.site-header {
  position: relative;
  z-index: 20;
  padding: 18px 0;
  border-bottom:
    1px solid
    rgb(39 51 50 / 10%);
  background:
    rgb(245 231 207 / 86%);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns:
    auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-strong);
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand-copy strong {
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.brand-version {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover {
  color: var(--ink-strong);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-actions .button {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 12px;
}

/* Hero */

.hero {
  position: relative;
  padding: 100px 0 116px;
}

.hero::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 900px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgb(255 255 255 / 42%),
      transparent 68%
    );
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(520px, 1.08fr);
  align-items: center;
  gap: 76px;
}

.release-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 0 13px;
  border:
    1px solid
    rgb(63 131 103 / 35%);
  border-radius: 999px;
  background:
    rgb(223 244 236 / 56%);
  color: var(--success);
  font-size: 11px;
  font-weight: 800;
}

.release-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow:
    0 0 0 5px
    rgb(63 131 103 / 12%);
}

.hero-copy h1 {
  max-width: 650px;
  margin: 11px 0 0;
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size:
    clamp(48px, 6vw, 76px);
  letter-spacing: -0.058em;
  line-height: 1.02;
}

.hero-copy h1 span {
  display: block;
  color: var(--teal);
}

.hero-description {
  max-width: 610px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 20px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.hero-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust-list span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    rgb(63 131 103 / 12%);
  color: var(--success);
  font-size: 10px;
}

.api-status {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 0 12px;
  border:
    1px solid var(--line-soft);
  border-radius: 999px;
  background:
    rgb(255 253 247 / 55%);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--warning);
  box-shadow:
    0 0 0 5px
    rgb(147 98 21 / 12%);
}

/* Product preview */

.hero-product {
  min-width: 0;
}

.product-preview {
  position: relative;
  min-height: 610px;
}

.browser-preview {
  position: absolute;
  top: 16px;
  right: 0;
  left: 0;
  min-height: 425px;
  overflow: hidden;
  background:
    rgb(255 253 247 / 72%);
  transform: rotate(1.1deg);
}

.browser-preview-bar {
  display: grid;
  grid-template-columns:
    auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 14px 17px;
  border-bottom:
    1px solid var(--line-soft);
  background:
    rgb(236 219 191 / 72%);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.browser-dots span:nth-child(2) {
  background: var(--yellow);
}

.browser-dots span:nth-child(3) {
  background: var(--success);
}

.browser-address {
  min-width: 0;
  padding: 7px 12px;
  overflow: hidden;
  border:
    1px solid var(--line-soft);
  border-radius: 7px;
  background:
    rgb(255 253 247 / 75%);
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-preview-content {
  position: relative;
  min-height: 365px;
  padding: 54px 38px;
}

.browser-page-copy {
  display: grid;
  width: 74%;
  gap: 14px;
}

.preview-line {
  display: block;
  width: 100%;
  height: 11px;
  border-radius: 999px;
  background:
    rgb(39 51 50 / 10%);
}

.preview-line-short {
  width: 42%;
  height: 18px;
  background:
    rgb(2 102 112 / 18%);
}

.preview-line-medium {
  width: 72%;
}

.context-menu-preview {
  position: absolute;
  right: 24px;
  bottom: 31px;
  width: 245px;
  padding: 9px;
  border:
    1px solid var(--line);
  border-radius:
    10px 8px 11px 9px;
  background: var(--paper-bright);
  box-shadow: var(--shadow-large);
}

.context-menu-label {
  margin: 0;
  padding: 5px 8px 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.context-menu-item {
  display: flex;
  min-height: 41px;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border-radius: 7px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
}

.context-menu-item-active {
  background: var(--teal-soft);
  color: var(--teal);
}

.context-menu-item span {
  font-size: 14px;
}

.extension-popup {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 0;
  width: 330px;
  padding: 16px;
  background:
    linear-gradient(
      180deg,
      rgb(255 250 240 / 97%),
      rgb(245 231 207 / 96%)
    );
  box-shadow: var(--shadow-large);
  transform: rotate(-1.7deg);
}

.extension-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.extension-popup-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.extension-popup-brand img {
  width: 34px;
  height: 34px;
}

.extension-popup-brand div {
  display: grid;
  gap: 1px;
}

.extension-popup-brand strong {
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 16px;
}

.extension-popup-brand span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
}

.extension-popup-version {
  color: var(--teal);
  font-size: 9px;
  font-weight: 800;
}

.extension-popup-panel {
  margin-top: 13px;
  padding: 14px;
  border:
    1px solid var(--line-soft);
  border-radius:
    12px 10px 13px 11px;
  background:
    rgb(255 253 247 / 66%);
}

.extension-popup-eyebrow {
  margin: 0;
  color: var(--teal);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.extension-popup-panel h2 {
  margin: 3px 0 10px;
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 18px;
}

.extension-popup-input {
  display: flex;
  min-width: 0;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  overflow: hidden;
  border:
    1px solid var(--line-soft);
  border-radius: 7px;
  background:
    rgb(255 255 255 / 48%);
  color: var(--muted);
  font-size: 8px;
  white-space: nowrap;
}

.extension-popup-input span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.extension-popup-button {
  display: flex;
  min-height: 37px;
  align-items: center;
  justify-content: center;
  margin-top: 7px;
  border-radius: 7px;
  background: var(--teal);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.extension-popup-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 11px;
  padding-top: 10px;
  border-top:
    1px solid var(--line-soft);
}

.extension-popup-result > div {
  display: grid;
}

.extension-popup-result span {
  color: var(--muted);
  font-size: 7px;
}

.extension-popup-result strong {
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 11px;
}

.extension-popup-result code {
  padding: 4px 6px;
  border-radius: 5px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 7px;
  font-weight: 800;
}

.extension-popup-url {
  margin-top: 8px;
  padding: 7px 8px;
  overflow: hidden;
  border:
    1px solid var(--line-soft);
  border-radius: 6px;
  color: var(--teal);
  font-family:
    ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  font-size: 7.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.extension-popup-history {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  margin-top: 10px;
  padding: 9px 10px;
  border:
    1px solid var(--line-soft);
  border-radius: 8px;
  background:
    rgb(223 244 236 / 38%);
}

.extension-popup-history > div {
  display: grid;
}

.extension-popup-history span {
  color: var(--muted);
  font-size: 7px;
}

.extension-popup-history strong {
  color: var(--ink-strong);
  font-size: 9px;
}

.extension-popup-history .history-count {
  color: var(--teal);
  font-size: 8px;
  font-weight: 800;
}

.product-note {
  position: absolute;
  z-index: 7;
  padding: 9px 12px;
  border:
    1px solid var(--line);
  border-radius:
    8px 10px 7px 9px;
  background: var(--yellow-soft);
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 11px;
  font-weight: 700;
  box-shadow: var(--shadow-small);
}

.product-note-right {
  top: 151px;
  right: -25px;
  transform: rotate(4deg);
}

.product-note-left {
  bottom: 72px;
  left: -31px;
  transform: rotate(-4deg);
}

/* Release section */

.release-section {
  border-top:
    1px solid
    rgb(39 51 50 / 9%);
  border-bottom:
    1px solid
    rgb(39 51 50 / 9%);
  background:
    rgb(255 248 233 / 35%);
}

.release-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.release-card {
  min-height: 285px;
  padding: 25px;
  overflow: hidden;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease;
}

.release-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.release-card-number {
  position: absolute;
  top: 9px;
  right: 16px;
  color:
    rgb(2 102 112 / 8%);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}

.release-card-icon {
  display: inline-flex;
  width: 47px;
  height: 47px;
  align-items: center;
  justify-content: center;
  border:
    1px solid
    rgb(2 102 112 / 28%);
  border-radius:
    13px 10px 14px 11px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 22px;
  font-weight: 800;
}

.release-card:nth-child(2n)
.release-card-icon {
  border-color:
    rgb(232 120 71 / 28%);
  background: var(--orange-soft);
  color: #a34724;
}

.release-card:nth-child(3n)
.release-card-icon {
  border-color:
    rgb(147 98 21 / 27%);
  background: var(--yellow-soft);
  color: var(--warning);
}

.release-card h3 {
  margin: 23px 0 0;
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.release-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

/* Extension workflow */

.extension-section {
  background:
    linear-gradient(
      180deg,
      transparent,
      rgb(223 244 236 / 22%),
      transparent
    );
}

.extension-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(460px, 1.1fr);
  align-items: center;
  gap: 76px;
}

.section-description {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.workflow-list {
  display: grid;
  gap: 17px;
  margin-top: 33px;
}

.workflow-list article {
  display: grid;
  grid-template-columns:
    42px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
}

.workflow-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border:
    1px solid
    rgb(2 102 112 / 28%);
  border-radius:
    12px 9px 13px 10px;
  background: var(--teal-soft);
  color: var(--teal);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 16px;
  font-weight: 700;
}

.workflow-list h3 {
  margin: 1px 0 0;
  color: var(--ink-strong);
  font-size: 16px;
}

.workflow-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.context-actions-board {
  padding: 27px;
  background:
    rgb(255 253 247 / 72%);
  transform: rotate(0.7deg);
}

.context-board-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom:
    1px solid var(--line-soft);
}

.context-board-eyebrow {
  color: var(--teal);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.context-board-header h3 {
  margin: 5px 0 0;
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.manifest-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border:
    1px solid
    rgb(63 131 103 / 28%);
  border-radius: 999px;
  background:
    rgb(223 244 236 / 56%);
  color: var(--success);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.context-action-group {
  margin-top: 22px;
}

.context-action-group > p {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.context-action {
  display: grid;
  grid-template-columns:
    42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  margin-top: 8px;
  padding: 10px 13px;
  border:
    1px solid var(--line-soft);
  border-radius:
    10px 13px 9px 12px;
  background:
    rgb(255 255 255 / 42%);
}

.context-action:hover {
  border-color:
    rgb(2 102 112 / 38%);
  background:
    rgb(223 244 236 / 35%);
}

.context-action-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 18px;
  font-weight: 800;
}

.context-action > div {
  display: grid;
  gap: 2px;
}

.context-action strong {
  color: var(--ink-strong);
  font-size: 13px;
}

.context-action > div span {
  color: var(--muted);
  font-size: 10px;
}

.context-action-arrow {
  color: var(--teal);
  font-size: 18px;
}

/* Web shortener */

.try-section {
  border-top:
    1px solid
    rgb(39 51 50 / 9%);
  border-bottom:
    1px solid
    rgb(39 51 50 / 9%);
  background:
    rgb(255 248 233 / 46%);
}

.web-tool-shell {
  display: grid;
  grid-template-columns:
    minmax(0, 0.72fr)
    minmax(500px, 1.28fr);
  align-items: center;
  gap: 62px;
  margin-top: 53px;
}

.web-tool-label {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 0 10px;
  border:
    1px solid
    rgb(2 102 112 / 24%);
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.web-tool-intro h3 {
  margin: 17px 0 0;
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 33px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.web-tool-intro > p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.web-tool-intro ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.web-tool-intro li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.web-tool-intro li::before {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    rgb(63 131 103 / 12%);
  color: var(--success);
  content: "\2713";
  font-size: 10px;
}

.hero-tool {
  min-width: 0;
}

.shorten-form {
  padding: 25px;
  background:
    rgb(255 253 247 / 80%);
}

.tool-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 21px;
}

.tool-heading h3 {
  margin: 5px 0 0;
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.tool-live-badge {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border:
    1px solid
    rgb(63 131 103 / 30%);
  border-radius: 999px;
  background:
    rgb(223 244 236 / 56%);
  color: var(--success);
  font-size: 9px;
  font-weight: 800;
}

.tool-live-badge::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  content: "";
}

.shorten-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.shorten-row {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) auto;
  gap: 10px;
}

.url-field {
  display: grid;
  grid-template-columns:
    auto minmax(0, 1fr);
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border:
    1.3px solid var(--line);
  border-radius:
    9px 12px 8px 11px;
  background:
    rgb(255 255 255 / 50%);
}

.url-field:focus-within {
  border-color: var(--teal);
  box-shadow:
    inset 0 0 0 2px
    rgb(2 102 112 / 12%);
}

.url-field-icon {
  color: var(--teal);
  font-size: 17px;
  transform: rotate(-9deg);
}

.url-field input {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  outline: 0;
}

.url-field input::placeholder {
  color: #8b908d;
}

.url-field input:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.shorten-button {
  min-width: 126px;
  min-height: 50px;
}

.form-hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.form-message {
  min-height: 23px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.form-message[data-type="success"] {
  color: var(--success);
}

.form-message[data-type="error"] {
  color: var(--error);
}

.loading-result,
.short-link-result {
  margin-top: 14px;
  padding: 22px;
  background:
    rgb(255 253 247 / 72%);
}

.loading-result {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.loading-lines {
  display: grid;
  gap: 9px;
}

.loading-actions {
  display: flex;
  gap: 8px;
}

.skeleton {
  display: block;
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgb(2 102 112 / 7%) 0%,
      rgb(2 102 112 / 20%) 50%,
      rgb(2 102 112 / 7%) 100%
    );
  background-size: 200% 100%;
  animation:
    shimmer 1.15s ease-in-out infinite;
}

.skeleton-short {
  width: 32%;
}

.skeleton-medium {
  width: 64%;
}

.skeleton-long {
  width: 90%;
}

.skeleton-button {
  width: 66px;
  height: 38px;
  border-radius: 8px;
}

.result-top {
  display: grid;
  grid-template-columns:
    43px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
}

.result-link-mark {
  display: inline-flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  border:
    1px solid
    rgb(2 102 112 / 28%);
  border-radius:
    12px 9px 13px 10px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 19px;
}

.result-title-group {
  display: grid;
}

.result-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.result-title-group h3 {
  margin: 2px 0 0;
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 20px;
}

.short-code {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 0 9px;
  border:
    1px solid
    rgb(2 102 112 / 22%);
  border-radius: 7px;
  background: var(--teal-soft);
  color: var(--teal);
  font-family:
    ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  font-size: 10px;
  font-weight: 800;
}

.result-url-row {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) auto auto;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top:
    1px solid var(--line-soft);
}

.result-url-wrap {
  min-width: 0;
}

.result-url-wrap input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border:
    1px solid var(--line-soft);
  border-radius: 8px;
  background:
    rgb(255 255 255 / 46%);
  color: var(--teal);
  font-family:
    ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  font-size: 11px;
  font-weight: 700;
  outline: 0;
}

.result-url-row .button {
  min-height: 44px;
  padding-inline: 13px;
  font-size: 10px;
}

.result-metrics {
  display: grid;
  grid-template-columns:
    0.7fr 1.3fr;
  gap: 9px;
  margin-top: 13px;
}

.result-metrics > div {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border:
    1px solid var(--line-soft);
  border-radius: 8px;
  background:
    rgb(255 255 255 / 34%);
}

.result-metrics > div:first-child {
  background:
    rgb(252 225 129 / 25%);
}

.result-metrics span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.result-metrics strong {
  color: var(--ink-strong);
  font-size: 12px;
}

.result-metrics > div:first-child
strong {
  color: var(--teal);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 21px;
}

/* Privacy */

.privacy-section {
  background:
    linear-gradient(
      180deg,
      transparent,
      rgb(223 244 236 / 25%),
      transparent
    );
}

.privacy-panel {
  display: grid;
  grid-template-columns:
    minmax(0, 0.72fr)
    minmax(0, 1.28fr);
  align-items: center;
  gap: 65px;
  padding: 48px;
  background:
    rgb(255 253 247 / 70%);
}

.privacy-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.privacy-grid article {
  min-height: 195px;
  padding: 20px;
  border:
    1px solid var(--line-soft);
  border-radius:
    13px 10px 14px 11px;
  background:
    rgb(255 255 255 / 37%);
}

.privacy-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 18px;
  font-weight: 800;
}

.privacy-grid article:nth-child(2n)
.privacy-icon {
  background: var(--yellow-soft);
  color: var(--warning);
}

.privacy-grid h3 {
  margin: 17px 0 0;
  color: var(--ink-strong);
  font-size: 15px;
}

.privacy-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

/* Technology */

.technology-section {
  border-top:
    1px solid
    rgb(39 51 50 / 9%);
  border-bottom:
    1px solid
    rgb(39 51 50 / 9%);
  background:
    rgb(255 248 233 / 42%);
}

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

.technology-card {
  min-height: 225px;
  padding: 23px;
  background:
    rgb(255 253 247 / 68%);
}

.technology-card > span {
  color: var(--teal);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.technology-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.technology-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.test-summary {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  padding: 24px;
  background:
    rgb(223 244 236 / 43%);
}

.test-summary > div {
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 8px 15px;
  border-right:
    1px solid var(--line-soft);
  text-align: center;
}

.test-summary > div:last-child {
  border-right: 0;
}

.test-summary strong {
  color: var(--teal);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 31px;
  line-height: 1;
}

.test-summary span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.63fr)
    minmax(0, 1.37fr);
  align-items: flex-start;
  gap: 75px;
}

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

.faq-list details {
  padding: 0 20px;
  background:
    rgb(255 253 247 / 66%);
}

.faq-list summary {
  position: relative;
  padding: 20px 38px 20px 0;
  color: var(--ink-strong);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 3px;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border:
    1px solid
    rgb(2 102 112 / 24%);
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  content: "+";
  font-size: 16px;
  transform: translateY(-50%);
}

.faq-list details[open]
summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 0 20px;
  padding-right: 30px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

/* Final CTA */

.final-cta-section {
  padding-top: 45px;
}

.final-cta {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding: 45px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 92% 8%,
      rgb(252 225 129 / 38%),
      transparent 30%
    ),
    rgb(255 253 247 / 75%);
}

.final-cta::before {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border:
    35px solid
    rgb(2 102 112 / 5%);
  border-radius: 50%;
  content: "";
}

.final-cta h2 {
  max-width: 650px;
}

.final-cta-actions {
  display: grid;
  gap: 11px;
  min-width: 245px;
}

/* Footer */

.site-footer {
  margin-top: 96px;
  padding: 65px 0 24px;
  border-top:
    1px solid
    rgb(39 51 50 / 13%);
  background:
    rgb(234 212 181 / 48%);
}

.footer-main {
  display: grid;
  grid-template-columns:
    minmax(260px, 1.5fr)
    repeat(3, minmax(130px, 0.7fr));
  gap: 45px;
}

.footer-product {
  max-width: 360px;
}

.footer-product p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 5px;
  color: var(--ink-strong);
  font-size: 12px;
}

.footer-column a {
  width: fit-content;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--teal);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 47px;
  padding-top: 21px;
  border-top:
    1px solid var(--line-soft);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}


/* Privacy policy page */

.privacy-page {
  background:
    radial-gradient(
      circle at 12% 3%,
      rgb(255 255 255 / 58%),
      transparent 26%
    ),
    radial-gradient(
      circle at 89% 9%,
      rgb(252 225 129 / 25%),
      transparent 25%
    ),
    repeating-linear-gradient(
      0deg,
      rgb(39 51 50 / 1.5%) 0,
      rgb(39 51 50 / 1.5%) 1px,
      transparent 1px,
      transparent 6px
    ),
    var(--paper);
}

.privacy-site-nav {
  gap: 20px;
}

.privacy-hero {
  position: relative;
  padding: 92px 0 78px;
  overflow: hidden;
}

.privacy-hero::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 540px;
  height: 540px;
  border:
    70px solid
    rgb(2 102 112 / 4%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.privacy-hero::after {
  position: absolute;
  bottom: -130px;
  left: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgb(232 120 71 / 8%),
      transparent 70%
    );
  content: "";
  pointer-events: none;
}

.privacy-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(380px, 0.95fr);
  align-items: center;
  gap: 72px;
}

.privacy-hero-copy h1 {
  margin: 10px 0 0;
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size:
    clamp(52px, 7vw, 82px);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.privacy-hero-description {
  max-width: 680px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.privacy-policy-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.privacy-summary {
  padding: 31px;
  background:
    linear-gradient(
      145deg,
      rgb(255 253 247 / 86%),
      rgb(223 244 236 / 48%)
    );
  transform: rotate(0.7deg);
}

.privacy-summary h2 {
  margin: 9px 0 0;
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 31px;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.privacy-summary ul {
  display: grid;
  gap: 13px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-summary li {
  display: grid;
  grid-template-columns:
    24px minmax(0, 1fr);
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.privacy-summary li > span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    rgb(63 131 103 / 14%);
  color: var(--success);
  font-size: 11px;
}

.privacy-content-section {
  padding: 30px 0 112px;
}

.privacy-content-layout {
  display: grid;
  grid-template-columns:
    250px minmax(0, 1fr);
  align-items: flex-start;
  gap: 34px;
}

.privacy-table-of-contents {
  position: sticky;
  top: 28px;
}

.privacy-toc-card {
  padding: 22px;
  background:
    rgb(255 253 247 / 72%);
}

.privacy-toc-card > strong {
  display: block;
  padding-bottom: 13px;
  border-bottom:
    1px solid var(--line-soft);
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 17px;
}

.privacy-toc-card nav {
  display: grid;
  gap: 4px;
  margin-top: 13px;
}

.privacy-toc-card a {
  display: block;
  padding: 8px 9px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition:
    background 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.privacy-toc-card a:hover {
  background:
    rgb(223 244 236 / 55%);
  color: var(--teal);
  transform: translateX(3px);
}

.privacy-document {
  padding:
    clamp(29px, 5vw, 58px);
  background:
    rgb(255 253 247 / 78%);
}

.privacy-document > section {
  position: relative;
  padding-top: 15px;
  scroll-margin-top: 30px;
}

.privacy-document > section + section {
  margin-top: 55px;
  padding-top: 55px;
  border-top:
    1px solid var(--line-soft);
}

.privacy-section-number {
  margin: 0;
  color:
    rgb(2 102 112 / 35%);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.privacy-document h2 {
  margin: 7px 0 0;
  color: var(--ink-strong);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size:
    clamp(27px, 3.5vw, 39px);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.privacy-document h3 {
  margin: 30px 0 0;
  color: var(--ink-strong);
  font-size: 16px;
  letter-spacing: -0.015em;
}

.privacy-document p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.82;
}

.privacy-document ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-document li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.privacy-document li::before {
  position: absolute;
  top: 8px;
  left: 2px;
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    rgb(2 102 112 / 11%);
  color: var(--teal);
  content: "\2713";
  font-size: 8px;
  font-weight: 900;
}

.privacy-document strong {
  color: var(--ink-strong);
}

.privacy-notice {
  margin-top: 25px;
  padding: 20px 22px;
  border:
    1px solid
    rgb(179 78 66 / 29%);
  border-left:
    5px solid var(--error);
  border-radius:
    11px 14px 10px 13px;
  background:
    rgb(248 211 189 / 35%);
}

.privacy-notice > strong {
  color: var(--error);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-notice p {
  margin-top: 7px;
  color: #77534b;
}

.privacy-provider-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 23px;
}

.privacy-provider-grid article {
  min-height: 180px;
  padding: 20px;
  border:
    1px solid var(--line-soft);
  border-radius:
    13px 10px 14px 11px;
  background:
    rgb(255 255 255 / 38%);
}

.privacy-provider-grid article:nth-child(2) {
  background:
    rgb(223 244 236 / 32%);
}

.privacy-provider-grid article:nth-child(3) {
  background:
    rgb(252 225 129 / 22%);
}

.privacy-provider-grid strong {
  display: block;
  color: var(--teal);
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 19px;
}

.privacy-provider-grid p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.7;
}

.privacy-permission-list {
  display: grid;
  gap: 12px;
  margin-top: 23px;
}

.privacy-permission-list article {
  display: grid;
  grid-template-columns:
    minmax(135px, auto)
    minmax(0, 1fr);
  gap: 20px;
  align-items: flex-start;
  padding: 19px;
  border:
    1px solid var(--line-soft);
  border-radius:
    12px 9px 13px 10px;
  background:
    rgb(255 255 255 / 34%);
}

.privacy-permission-list article:hover {
  border-color:
    rgb(2 102 112 / 33%);
  background:
    rgb(223 244 236 / 30%);
}

.privacy-permission-list code {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border:
    1px solid
    rgb(2 102 112 / 20%);
  border-radius: 7px;
  background: var(--teal-soft);
  color: var(--teal);
  font-family:
    ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  font-size: 10px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.privacy-permission-list strong {
  display: block;
  font-size: 14px;
}

.privacy-permission-list p {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.7;
}

.privacy-limited-use {
  margin-top: 22px;
  padding: 23px;
  border:
    1px solid
    rgb(63 131 103 / 30%);
  border-radius:
    13px 10px 14px 11px;
  background:
    linear-gradient(
      145deg,
      rgb(223 244 236 / 68%),
      rgb(255 253 247 / 70%)
    );
}

.privacy-limited-use p {
  margin: 0;
  color: #365f50;
  font-family:
    "Lora",
    Georgia,
    serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

.privacy-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 24px;
}

.privacy-contact-warning {
  padding: 14px 16px;
  border:
    1px solid
    rgb(147 98 21 / 25%);
  border-radius: 9px;
  background:
    rgb(252 225 129 / 24%);
  color: #765d27 !important;
  font-size: 12px !important;
}

.privacy-footer {
  margin-top: 0;
}

/* Privacy policy responsive layout */

@media (max-width: 1080px) {
  .privacy-hero-layout {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(340px, 0.82fr);
    gap: 45px;
  }

  .privacy-content-layout {
    grid-template-columns:
      220px minmax(0, 1fr);
    gap: 25px;
  }

  .privacy-provider-grid {
    grid-template-columns: 1fr;
  }

  .privacy-provider-grid article {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .privacy-hero {
    padding: 72px 0 62px;
  }

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

  .privacy-hero-copy {
    max-width: 720px;
  }

  .privacy-summary {
    width: min(100%, 680px);
  }

  .privacy-content-layout {
    grid-template-columns: 1fr;
  }

  .privacy-table-of-contents {
    position: static;
  }

  .privacy-toc-card nav {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 5px 12px;
  }

  .privacy-document {
    padding: 38px;
  }
}

@media (max-width: 680px) {
  .privacy-hero {
    padding: 57px 0 50px;
  }

  .privacy-hero-copy h1 {
    font-size:
      clamp(43px, 14vw, 60px);
  }

  .privacy-hero-description {
    font-size: 16px;
  }

  .privacy-policy-meta {
    display: grid;
    gap: 3px;
  }

  .privacy-policy-meta
  span[aria-hidden="true"] {
    display: none;
  }

  .privacy-summary,
  .privacy-document,
  .privacy-toc-card {
    padding: 24px;
  }

  .privacy-summary h2 {
    font-size: 26px;
  }

  .privacy-toc-card nav {
    grid-template-columns: 1fr;
  }

  .privacy-document > section + section {
    margin-top: 42px;
    padding-top: 42px;
  }

  .privacy-document h2 {
    font-size: 29px;
  }

  .privacy-permission-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .privacy-permission-list code {
    max-width: 100%;
  }

  .privacy-contact-actions {
    display: grid;
  }

  .privacy-contact-actions .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .privacy-summary,
  .privacy-document,
  .privacy-toc-card {
    padding: 20px;
  }

  .privacy-document p,
  .privacy-document li {
    font-size: 13px;
  }

  .privacy-provider-grid article,
  .privacy-permission-list article {
    padding: 17px;
  }

  .privacy-page
  .header-actions
  .button-secondary {
    display: none;
  }
}

/* Animation */

@keyframes shimmer {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}




/* Responsive */

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns:
      minmax(0, 1fr) auto;
  }

  .hero-layout {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(440px, 0.92fr);
    gap: 45px;
  }

  .hero-copy h1 {
    font-size:
      clamp(45px, 6vw, 64px);
  }

  .release-grid,
  .technology-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .extension-layout,
  .privacy-panel {
    gap: 42px;
  }

  .web-tool-shell {
    grid-template-columns:
      minmax(0, 0.8fr)
      minmax(440px, 1.2fr);
    gap: 38px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .hero {
    padding: 72px 0 93px;
  }

  .hero-layout,
  .extension-layout,
  .web-tool-shell,
  .privacy-panel,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 64px;
  }

  .hero-copy {
    max-width: 690px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy .sketch-underline {
    margin-inline: auto;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust-list {
    justify-content: center;
  }

  .api-status {
    margin-inline: auto;
  }

  .hero-product {
    width: min(100%, 630px);
    margin-inline: auto;
  }

  .product-note-right {
    right: 0;
  }

  .product-note-left {
    left: 0;
  }

  .extension-copy,
  .web-tool-intro,
  .privacy-heading,
  .faq-layout > .section-heading {
    max-width: 680px;
  }

  .context-actions-board {
    width: min(100%, 670px);
    margin-inline: auto;
  }

  .privacy-panel {
    padding: 38px;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta-actions {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    min-width: 0;
  }

  .footer-main {
    grid-template-columns:
      1.5fr 1fr 1fr;
  }

  .footer-product {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width:
      min(
        calc(100% - 28px),
        var(--container)
      );
  }

  .section {
    padding: 67px 0;
  }

  .header-github {
    display: none;
  }

  .header-install {
    min-height: 38px !important;
    padding-inline: 12px !important;
  }

  .brand-logo {
    width: 37px;
    height: 37px;
    flex-basis: 37px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .hero {
    padding-top: 58px;
  }

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

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust-list {
    display: grid;
    justify-content: center;
    text-align: left;
  }

  .product-preview {
    min-height: 540px;
  }

  .browser-preview {
    min-height: 380px;
  }

  .browser-preview-content {
    min-height: 320px;
    padding: 39px 23px;
  }

  .context-menu-preview {
    right: 14px;
    bottom: 23px;
    width: 215px;
  }

  .extension-popup {
    right: 8px;
    width: min(310px, 88%);
  }

  .product-note {
    display: none;
  }

  .release-grid,
  .technology-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .release-card {
    min-height: 245px;
  }

  .context-actions-board,
  .privacy-panel,
  .final-cta {
    padding: 25px;
  }

  .context-board-header {
    display: grid;
  }

  .manifest-badge {
    width: fit-content;
  }

  .context-action {
    grid-template-columns:
      38px minmax(0, 1fr);
  }

  .context-action-arrow {
    display: none;
  }

  .shorten-row,
  .result-url-row {
    grid-template-columns: 1fr;
  }

  .shorten-button,
  .result-url-row .button {
    width: 100%;
  }

  .loading-result {
    grid-template-columns: 1fr;
  }

  .result-top {
    grid-template-columns:
      42px minmax(0, 1fr);
  }

  .short-code {
    grid-column: 1 / -1;
    width: fit-content;
  }

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

  .privacy-grid article {
    min-height: 0;
  }

  .test-summary {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .test-summary > div:nth-child(2) {
    border-right: 0;
  }

  .test-summary > div:nth-child(-n + 2) {
    padding-bottom: 18px;
    border-bottom:
      1px solid var(--line-soft);
  }

  .test-summary > div:nth-child(n + 3) {
    padding-top: 18px;
  }

  .final-cta-actions {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 35px 25px;
  }

  .footer-product {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-meta {
    display: grid;
    justify-content: start;
    gap: 6px;
  }
}

@media (max-width: 420px) {
  .header-actions .button {
    font-size: 10px;
  }

  .brand-version {
    display: none;
  }

  .release-pill {
    font-size: 10px;
  }

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

  .extension-popup {
    width: 94%;
  }

  .browser-address {
    font-size: 8px;
  }

  .context-menu-preview {
    width: 195px;
  }

  .context-menu-item {
    font-size: 9px;
  }

  .privacy-panel,
  .final-cta,
  .context-actions-board {
    padding: 21px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-product,
  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (
  prefers-reduced-motion: reduce
) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration:
      0.01ms !important;
    animation-duration:
      0.01ms !important;
    animation-iteration-count:
      1 !important;
  }
}