body.ip-lock-page {
  min-height: 100svh;
  overflow-x: hidden;
  background: #06152b;
}

.ip-lock {
  position: relative;
  min-height: calc(100svh - var(--nav-total-offset));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 95%, rgba(255, 112, 57, .22), transparent 32%),
    radial-gradient(circle at 58% 5%, rgba(41, 196, 214, .13), transparent 28%),
    linear-gradient(126deg, #06152b 0%, #102e52 55%, #071a31 100%);
  isolation: isolate;
}

.ip-lock::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .055;
  background-image:
    linear-gradient(rgba(255, 255, 255, .32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .32) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(90deg, #000 0 58%, transparent 78%);
  mask-image: linear-gradient(90deg, #000 0 58%, transparent 78%);
}

.ip-lock::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: 12%;
  z-index: -1;
  width: min(44vw, 660px);
  height: 110px;
  opacity: .065;
  background: repeating-linear-gradient(135deg, #fec01a 0 16px, transparent 16px 34px);
  transform: rotate(-7deg);
  pointer-events: none;
}

.ip-caution-band {
  position: relative;
  z-index: 8;
  overflow: hidden;
  color: #071a31;
  background:
    repeating-linear-gradient(135deg, #071a31 0 9px, #fec01a 9px 18px) top / 100% 7px no-repeat,
    repeating-linear-gradient(135deg, #071a31 0 9px, #fec01a 9px 18px) bottom / 100% 7px no-repeat,
    #fec01a;
  box-shadow: 0 8px 24px rgba(2, 12, 26, .25);
}

.ip-caution-band-bottom {
  background:
    repeating-linear-gradient(-135deg, #071a31 0 9px, #fec01a 9px 18px) top / 100% 7px no-repeat,
    repeating-linear-gradient(-135deg, #071a31 0 9px, #fec01a 9px 18px) bottom / 100% 7px no-repeat,
    #fec01a;
  box-shadow: 0 -8px 24px rgba(2, 12, 26, .25);
}

.ip-caution-track {
  min-width: max-content;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(38px, 5vw, 84px);
  padding: 8px clamp(20px, 4vw, 64px);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1;
  white-space: nowrap;
}

.ip-caution-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ip-caution-track span::before {
  content: "◆";
  color: #e64d2e;
  font-size: 8px;
}

.ip-caution-band-bottom .ip-caution-track { transform: translateX(-42px); }

.ip-lock-stage {
  width: 100%;
  max-width: none;
  min-height: 0;
  display: grid;
  padding: 0;
}

.ip-warning-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, .88fr);
  align-items: stretch;
  overflow: hidden;
  color: #fffaf0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.ip-warning-card::before {
  content: "";
  position: absolute;
  top: clamp(24px, 4vh, 48px);
  left: 0;
  z-index: 3;
  width: clamp(86px, 9vw, 150px);
  height: 8px;
  background: repeating-linear-gradient(135deg, #fec01a 0 10px, #ff7046 10px 20px);
}

.ip-warning-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vh, 78px) clamp(34px, 6vw, 104px);
  overflow: hidden;
}

.ip-warning-copy::before {
  content: "";
  position: absolute;
  inset: auto 7% 8% auto;
  width: 190px;
  height: 190px;
  border: 1px dashed rgba(254, 192, 26, .18);
  border-radius: 50%;
  box-shadow:
    0 0 0 20px rgba(254, 192, 26, .025),
    0 0 0 42px rgba(254, 192, 26, .018);
  pointer-events: none;
}

.ip-warning-copy::after {
  content: "!";
  position: absolute;
  top: 50%;
  right: 7%;
  z-index: -1;
  color: rgba(255, 255, 255, .035);
  font-family: var(--font-display);
  font-size: min(64vh, 540px);
  font-weight: 900;
  line-height: .7;
  transform: translateY(-45%) rotate(7deg);
  pointer-events: none;
}

.ip-warning-copy > * {
  position: relative;
  z-index: 1;
}

.ip-ball-dangler {
  position: absolute;
  top: -22px;
  right: 2.5%;
  z-index: 2;
  width: clamp(150px, 13vw, 218px);
  pointer-events: auto;
  transform-origin: 50% 0;
  animation: ipBallIdle 7s ease-in-out infinite;
}

.ip-ball-dangler img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .28));
}

.ip-ball-dangler:hover { animation: ipBallSwing 1.8s ease-in-out; }

@keyframes ipBallIdle {
  0%, 100% { transform: rotate(1.4deg); }
  50% { transform: rotate(-1.4deg); }
}

@keyframes ipBallSwing {
  0% { transform: rotate(0deg); }
  18% { transform: rotate(9deg); }
  45% { transform: rotate(-7deg); }
  70% { transform: rotate(4deg); }
  88% { transform: rotate(-2deg); }
  100% { transform: rotate(1.4deg); }
}

.ip-alert-label {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: stretch;
  margin-bottom: clamp(13px, 2vh, 22px);
  color: #071a31;
  border: 1px solid rgba(254, 192, 26, .6);
  border-radius: 10px;
  background: #fec01a;
  box-shadow: 9px 9px 0 rgba(0, 0, 0, .16);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
  overflow: hidden;
}

.ip-alert-label i {
  width: 40px;
  min-height: 38px;
  display: grid;
  place-items: center;
  color: #fec01a;
  background: #071a31;
  font-style: normal;
  font-size: 20px;
}

.ip-alert-label > span {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  line-height: 1.2;
  text-wrap: balance;
}

.ip-warning-eyebrow {
  margin: 0 0 9px;
  color: rgba(255, 250, 240, .58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ip-warning-card h1 {
  max-width: 13ch;
  margin-bottom: clamp(15px, 2.2vh, 24px);
  color: #fff;
  font-size: clamp(43px, 4.4vw, 66px);
  line-height: .93;
  letter-spacing: -.048em;
  text-wrap: balance;
}

.ip-warning-lead {
  max-width: 69ch;
  margin-bottom: clamp(19px, 2.7vh, 30px);
  color: rgba(255, 250, 240, .76);
  font-size: clamp(12px, 1.02vw, 15px);
  line-height: 1.57;
}

.ip-boundaries {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: clamp(18px, 2.6vh, 28px);
  overflow: visible;
  border: 0;
}

.ip-boundary {
  --boundary-accent: #fec01a;
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 15px clamp(9px, 1vw, 15px) 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-top: 4px solid #fec01a;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(254, 192, 26, .09), rgba(4, 18, 39, .28) 60%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.ip-boundary:nth-child(2) { border-top-color: #ff7442; }
.ip-boundary:nth-child(3) { border-top-color: #38c7d7; }
.ip-boundary:nth-child(2) { --boundary-accent: #ff9c73; }
.ip-boundary:nth-child(3) { --boundary-accent: #6fe3f0; }
.ip-boundary + .ip-boundary { border-left: 1px solid rgba(255, 255, 255, .16); }

.ip-boundary-icon {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--boundary-accent);
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(7, 26, 49, .64);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .025);
  font-size: 20px;
  line-height: 1;
}

.ip-boundary-icon::before { content: "⧉"; transform: translateY(-1px); }
.ip-boundary-icon.is-manufacture::before { content: "⚙"; }
.ip-boundary-icon.is-commercial::before { content: "↗"; font-size: 1.2em; font-weight: 900; }
.ip-boundary-icon i {
  position: absolute;
  right: -6px;
  bottom: -5px;
  min-width: 17px;
  padding: 3px;
  color: #071a31;
  border-radius: 9px;
  background: var(--boundary-accent);
  font-family: var(--font-body);
  font-size: 6px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.ip-boundary div { min-width: 0; }
.ip-boundary b { display: block; margin-bottom: 4px; color: #fff; font-size: 11px; line-height: 1.2; }
.ip-boundary small { display: block; color: rgba(255, 250, 240, .56); font-size: 9px; line-height: 1.35; }

.ip-enforcement {
  max-width: 780px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 13px 16px;
  border: 1px solid rgba(254, 192, 26, .28);
  border-left: 5px solid #fec01a;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(254, 192, 26, .1), transparent 70%),
    rgba(4, 18, 39, .22);
}

.ip-enforcement svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #fec01a;
  stroke-width: 2;
}

.ip-enforcement strong { display: block; margin-bottom: 3px; color: #fff; font-size: 12px; }
.ip-enforcement p { margin: 0; color: rgba(255, 250, 240, .63); font-size: 9.5px; line-height: 1.42; }

.ip-rights-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 1.6vh, 18px);
  padding: clamp(36px, 5vh, 68px) clamp(32px, 4.3vw, 74px);
  overflow: hidden;
  color: #15243a;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(18, 39, 65, .055) 1px, transparent 1px) 32px 0 / 1px 100% no-repeat,
    radial-gradient(circle at 100% 100%, rgba(254, 192, 26, .13), transparent 36%),
    linear-gradient(180deg, #fffaf0, #eee4d2);
  box-shadow: -28px 0 70px rgba(1, 12, 28, .32), inset 1px 0 0 rgba(255, 255, 255, .9);
}

.ip-rights-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 4;
  width: 10px;
  background: repeating-linear-gradient(135deg, #071a31 0 10px, #fec01a 10px 20px);
}

.ip-rights-panel::after {
  content: "IP";
  position: absolute;
  right: -24px;
  bottom: -58px;
  color: rgba(17, 35, 59, .035);
  font-family: var(--font-display);
  font-size: 250px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.1em;
  transform: rotate(-8deg);
  pointer-events: none;
}

.ip-orbit {
  position: absolute;
  right: -142px;
  bottom: -170px;
  z-index: -1;
  width: 500px;
  overflow: visible;
  opacity: .075;
  transform: rotate(-12deg);
}

.ip-orbit path { fill: none; stroke: #173b62; stroke-linecap: round; stroke-linejoin: round; }
.ip-orbit path:first-child { stroke-width: 3; stroke-dasharray: 2 12; }
.ip-orbit path:last-child { stroke-width: 2; stroke-dasharray: 15 10; }

.ip-protection-mark {
  position: absolute;
  top: -44px;
  right: -42px;
  width: 174px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px solid rgba(194, 95, 55, .19);
  border-radius: 50%;
  color: rgba(194, 95, 55, .16);
  transform: rotate(9deg);
}

.ip-protection-ring { position: absolute; inset: 9px; border: 1px dashed currentColor; border-radius: 50%; }
.ip-protection-mark small { font-size: 6px; font-weight: 900; letter-spacing: .16em; }
.ip-protection-mark strong { font-family: var(--font-display); font-size: 54px; line-height: .82; letter-spacing: -.07em; }
.ip-protection-mark b { font-size: 7px; letter-spacing: .14em; }
html[lang="tr"] .ip-protection-mark strong { font-size: 24px; letter-spacing: .035em; }
html[lang="tr"] .ip-protection-mark b { font-size: 6px; letter-spacing: .1em; }

.ip-authorities {
  position: relative;
  z-index: 2;
}

.ip-authorities-heading {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding-bottom: 20px;
}

.ip-authorities-heading::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: repeating-linear-gradient(135deg, #173b62 0 9px, #fec01a 9px 18px);
}

.ip-authorities-heading span {
  display: block;
  margin-bottom: 4px;
  color: #a64a2e;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ip-authorities-heading strong {
  color: #11233b;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.35vw, 36px);
  line-height: 1;
}

.ip-authorities-grid {
  display: grid;
  grid-template-columns: 1fr;
  counter-reset: ip-offices;
}

.ip-authority {
  position: relative;
  min-width: 0;
  min-height: 112px;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px 28px 14px 4px;
  color: #15243a;
  border-bottom: 1px dashed rgba(21, 36, 58, .24);
  text-decoration: none;
  counter-increment: ip-offices;
  transition: color .18s ease, transform .18s ease, background .18s ease;
}

.ip-authority::before {
  content: "0" counter(ip-offices);
  position: absolute;
  right: 4px;
  bottom: 7px;
  color: rgba(21, 36, 58, .2);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.ip-authority::after {
  content: "↗";
  position: absolute;
  top: 13px;
  right: 4px;
  color: rgba(21, 36, 58, .42);
  font-size: 12px;
}

.ip-authority:hover {
  color: #a64a2e;
  background: linear-gradient(90deg, rgba(254, 192, 26, .12), transparent);
  transform: translateX(4px);
}

.ip-authority:focus-visible {
  outline: 3px solid #ec6a3a;
  outline-offset: 2px;
}

.ip-authority img {
  width: 104px;
  height: 68px;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}

.ip-authority.is-turkpatent img { width: 104px; height: 64px; }
.ip-authority.is-euipo img { width: 106px; height: 60px; }
.ip-authority.is-ukipo img { width: 78px; height: 78px; justify-self: center; }

.ip-authority-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
  color: #15243a;
}

.ip-authority-topline {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ip-authority-topline strong {
  overflow: hidden;
  color: #11233b;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ip-authority-topline em {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  color: #1f6d43;
  border: 1px solid rgba(31, 109, 67, .28);
  border-radius: 999px;
  background: rgba(54, 145, 91, .1);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .045em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ip-authority-topline em::before { content: "✓"; font-size: 10px; }
.ip-authority-topline em.is-filing {
  color: #176b7a;
  border-color: rgba(23, 107, 122, .28);
  background: rgba(35, 153, 172, .1);
}

.ip-authority-summary {
  color: #5e6877;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.ip-authority-numbers {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ip-authority-numbers > small {
  color: #8a6a54;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ip-authority-numbers b {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px 12px;
  color: #173b62;
  font-family: 'Inter', monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .025em;
  line-height: 1.2;
}

.ip-authority-numbers b span { white-space: nowrap; }
.ip-authority-numbers i { color: #8a6a54; font-size: .82em; font-style: normal; }

.ip-record {
  display: grid;
  justify-items: end;
  gap: 3px;
}

.ip-record-code { color: #173b62; }

.ip-blurred {
  display: inline-block;
  filter: blur(3px);
  transform: translateZ(0);
  user-select: none;
}

.ip-redacted {
  display: inline-block;
  margin-left: 1px;
  color: #8b6952;
  letter-spacing: -.12em;
  opacity: .7;
  filter: blur(.35px);
  transform: translateY(-.04em);
}

.ip-record time {
  color: #6b6d6b;
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .015em;
  line-height: 1;
}

.ip-record time em {
  margin-right: 3px;
  color: #a64a2e;
  font-size: .78em;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ip-confidentiality {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 18px 16px 14px;
  overflow: hidden;
  border-radius: 14px;
  color: #fffaf0;
  background: #11233b;
}

.ip-confidentiality::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: repeating-linear-gradient(135deg, #fec01a 0 9px, #ff7442 9px 18px);
}

.ip-confidentiality svg { width: 30px; height: 30px; fill: none; stroke: #fec01a; stroke-width: 1.7; }
.ip-confidentiality p { margin: 0; }
.ip-confidentiality strong { display: block; margin-bottom: 3px; color: #fff; font-size: 10px; }
.ip-confidentiality span { display: block; color: rgba(255, 250, 240, .62); font-size: 8px; line-height: 1.35; }

.ip-authority-disclaimer {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #767875;
  font-size: 7px;
  line-height: 1.4;
}

@media (max-width: 1050px) {
  .ip-warning-card { grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr); }
  .ip-warning-copy { padding-inline: clamp(30px, 4vw, 56px); }
  .ip-warning-card h1 { font-size: clamp(38px, 4.6vw, 52px); }
  .ip-boundary { grid-template-columns: 34px minmax(0, 1fr); gap: 8px; padding-inline: 9px; }
  .ip-boundary-icon { width: 31px; height: 31px; font-size: 16px; }
  .ip-rights-panel { padding-inline: 34px; }
  .ip-authority { min-height: 106px; grid-template-columns: 86px minmax(0, 1fr); gap: 11px; }
  .ip-authority img, .ip-authority.is-turkpatent img, .ip-authority.is-euipo img { width: 82px; }
  .ip-authority-topline strong { font-size: 16px; }
  .ip-authority-topline em { font-size: 8px; }
  .ip-authority-summary { font-size: 10px; }
  .ip-authority-numbers { display: grid; justify-content: stretch; gap: 4px; }
  .ip-authority-numbers b { justify-content: flex-start; font-size: 10px; }
  .ip-record { justify-items: start; }
  .ip-record time { font-size: 8px; }
}

@media (max-width: 820px) {
  body.ip-lock-page { min-height: 100svh; }
  .ip-lock { min-height: calc(100svh - var(--nav-total-offset)); overflow: visible; }
  .ip-warning-card { grid-template-columns: 1fr; min-height: 0; }
  .ip-warning-copy { min-height: 560px; padding: 62px clamp(22px, 6vw, 54px); }
  .ip-warning-copy::after { right: 4%; font-size: min(80vw, 440px); }
  .ip-warning-card h1 { max-width: 14ch; font-size: clamp(39px, 8.5vw, 60px); }
  .ip-rights-panel {
    min-height: 520px;
    padding: 54px clamp(22px, 6vw, 54px) 48px;
    box-shadow: inset 0 20px 48px rgba(17, 35, 59, .08);
  }
  .ip-rights-panel::before {
    inset: 0 0 auto;
    width: auto;
    height: 10px;
    background: repeating-linear-gradient(135deg, #071a31 0 10px, #fec01a 10px 20px);
  }
  .ip-authorities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .ip-authority {
    min-height: 202px;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    gap: 9px;
    padding: 18px 10px 14px;
    border: 1px solid rgba(21, 36, 58, .16);
    text-align: center;
  }
  .ip-authority::after { top: 8px; right: 9px; }
  .ip-authority::before { right: 9px; bottom: 7px; }
  .ip-authority img, .ip-authority.is-turkpatent img, .ip-authority.is-euipo img { width: 100%; height: 46px; }
  .ip-authority.is-ukipo img { width: 100%; height: 58px; }
  .ip-authority-copy { width: 100%; justify-items: center; gap: 5px; }
  .ip-authority-topline { display: grid; justify-items: center; gap: 5px; }
  .ip-authority-topline strong { font-size: 15px; }
  .ip-authority-topline em { font-size: 7.5px; }
  .ip-authority-numbers { width: 100%; display: grid; justify-items: center; gap: 4px; }
  .ip-authority-numbers b { justify-content: center; font-size: 10.5px; }
  .ip-record { justify-items: center; }
  .ip-record time { font-size: 8px; }
}

@media (max-width: 620px) {
  .ip-caution-track { min-height: 30px; gap: 34px; padding-block: 7px; font-size: 7.5px; }
  .ip-warning-copy { min-height: 0; padding-block: 56px; }
  .ip-alert-label { font-size: 8px; }
  .ip-alert-label i { width: 34px; min-height: 34px; }
  .ip-alert-label > span { padding: 7px 11px; }
  .ip-warning-eyebrow { font-size: 8px; }
  .ip-warning-card h1 { font-size: clamp(36px, 11.5vw, 52px); }
  .ip-warning-lead { font-size: 11px; }
  .ip-boundaries { gap: 5px; }
  .ip-boundary { display: block; min-height: 50px; padding: 12px 5px; text-align: center; }
  .ip-boundary small { display: none; }
  .ip-boundary > .ip-boundary-icon { width: 31px; height: 31px; display: grid; margin: 0 auto 8px; font-size: 16px; }
  .ip-boundary b { margin: 0; font-size: 8px; }
  .ip-enforcement { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; padding: 11px 12px; }
  .ip-enforcement svg { width: 30px; height: 30px; }
  .ip-enforcement strong { font-size: 10px; }
  .ip-enforcement p { font-size: 8px; }
  .ip-rights-panel { min-height: 0; padding-block: 48px; }
  .ip-protection-mark { top: -54px; right: -54px; }
  .ip-authorities-heading strong { font-size: 25px; }
  .ip-authorities-grid { grid-template-columns: 1fr; gap: 0; }
  .ip-authority {
    min-height: 118px;
    grid-template-columns: 92px minmax(0, 1fr);
    align-content: center;
    justify-items: stretch;
    gap: 12px;
    padding: 12px 28px 12px 4px;
    border-width: 0 0 1px;
    text-align: left;
  }
  .ip-authority img, .ip-authority.is-turkpatent img, .ip-authority.is-euipo img { width: 88px; height: 54px; }
  .ip-authority.is-ukipo img { width: 68px; height: 68px; }
  .ip-authority-copy { justify-items: stretch; }
  .ip-authority-topline { display: flex; justify-items: initial; }
  .ip-authority-topline strong { font-size: 15px; }
  .ip-authority-numbers { display: grid; justify-items: stretch; }
  .ip-authority-numbers b { justify-content: flex-start; font-size: 10px; }
  .ip-record { justify-items: start; }
}

@media (min-width: 821px) and (max-height: 710px) {
  .ip-caution-track { min-height: 26px; padding-block: 6px; font-size: 8px; }
  .ip-warning-copy { padding-block: 28px; }
  .ip-alert-label { margin-bottom: 8px; }
  .ip-alert-label i { min-height: 32px; }
  .ip-warning-card h1 { margin-bottom: 10px; font-size: clamp(34px, 3.4vw, 45px); }
  .ip-warning-lead { margin-bottom: 11px; font-size: 10.5px; line-height: 1.4; }
  .ip-boundaries { margin-bottom: 11px; }
  .ip-boundary { padding-top: 9px; padding-bottom: 8px; }
  .ip-boundary small { display: none; }
  .ip-enforcement { padding-block: 8px; }
  .ip-enforcement p { font-size: 8px; }
  .ip-rights-panel { gap: 8px; padding-block: 24px; }
  .ip-authorities-heading { margin-bottom: 4px; padding-bottom: 13px; }
  .ip-authorities-heading strong { font-size: 22px; }
  .ip-authority { min-height: 78px; padding-block: 5px; }
  .ip-authority img, .ip-authority.is-euipo img { height: 40px; }
  .ip-authority.is-turkpatent img { height: 42px; }
  .ip-authority.is-ukipo img { height: 48px; }
  .ip-authority-summary { display: none; }
  .ip-confidentiality { padding-block: 13px 9px; }
  .ip-confidentiality span, .ip-authority-disclaimer { display: none; }
}

/* Laptop and monitor scale: mobile/tablet card sizing above remains untouched. */
@media (min-width: 1060px) {
  .ip-caution-track { min-height: 40px; font-size: 11px; }
  .ip-alert-label { font-size: 12px; }
  .ip-warning-eyebrow { font-size: 12px; }
  .ip-warning-lead { font-size: clamp(15px, 1.05vw, 18px); }
  .ip-boundary-icon { width: 44px; height: 44px; font-size: 23px; }
  .ip-boundary b { font-size: 13px; }
  .ip-boundary small { display: block; font-size: 10.5px; }
  .ip-enforcement strong { font-size: 14px; }
  .ip-enforcement p { font-size: 11px; }

  .ip-rights-panel {
    gap: clamp(14px, 1.8vh, 22px);
    padding-inline: clamp(42px, 4.5vw, 82px);
  }

  .ip-authorities-heading { margin-bottom: 12px; padding-bottom: 23px; }
  .ip-authorities-heading span { font-size: 12px; }
  .ip-authorities-heading strong { font-size: clamp(34px, 2.5vw, 44px); }

  .ip-authority {
    min-height: 122px;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 22px;
    padding-block: 15px;
  }

  .ip-authority img,
  .ip-authority.is-turkpatent img,
  .ip-authority.is-euipo img { width: 120px; height: 76px; }
  .ip-authority.is-ukipo img { width: 92px; height: 92px; }
  .ip-authority-copy { gap: 8px; }
  .ip-authority-topline strong { font-size: 22px; }
  .ip-authority-topline em { padding: 6px 10px; font-size: 11px; }
  .ip-authority-topline em::before { font-size: 12px; }
  .ip-authority-summary { display: block; font-size: 13px; }
  .ip-authority-numbers > small { font-size: 10px; }
  .ip-authority-numbers b { font-size: 14.5px; gap: 7px 18px; }
  .ip-record { gap: 4px; }
  .ip-record time { font-size: 10.5px; }

  .ip-confidentiality strong { font-size: 12px; }
  .ip-confidentiality span { display: block; font-size: 10px; }
  .ip-authority-disclaimer { display: block; font-size: 8.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .ip-authority { transition: none; }
  .ip-ball-dangler, .ip-ball-dangler:hover { animation: none; }
}

@media (max-width: 1059px) {
  .ip-ball-dangler { display: none; }
}
