:root {
  --ink: #101521;
  --night: #182235;
  --night-2: #24324b;
  --paper: #f3f0e8;
  --paper-2: #fffaf0;
  --acid: #d7ff3f;
  --ember: #ff5a2f;
  --blue: #3c6cff;
  --muted: #6d7483;
  --line: rgba(16, 21, 33, 0.12);
  --shadow: 0 26px 80px rgba(24, 34, 53, 0.18);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 90, 47, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(60, 108, 255, 0.13), transparent 24rem),
    linear-gradient(180deg, #f9f6ee 0%, #f2efe8 52%, #e9edf7 100%);
  font-family: "Manrope", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(16, 21, 33, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 21, 33, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

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

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 18px 60px rgba(24, 34, 53, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.top-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper-2);
  background: var(--ink);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.78rem;
}

.top-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-cta,
.inline-buy a,
.final-cta a,
.price-box a,
.form-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--acid);
  font-weight: 900;
  box-shadow: 0 14px 0 rgba(16, 21, 33, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  padding: 14px 20px;
}

.header-cta:hover,
.inline-buy a:hover,
.final-cta a:hover,
.price-box a:hover,
.form-actions button:hover {
  transform: translateY(4px);
  box-shadow: 0 8px 0 rgba(16, 21, 33, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(1380px, calc(100% - 28px));
  margin: 18px auto 0;
  padding: clamp(52px, 8vw, 96px) 22px 72px;
  border-radius: 36px;
  color: var(--paper-2);
  background:
    linear-gradient(rgba(24, 34, 53, 0.88), rgba(24, 34, 53, 0.93)),
    repeating-linear-gradient(116deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 112px),
    var(--night);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(215, 255, 63, 0.16), transparent 62%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.95) 1px, transparent 1px);
  background-size: 18px 18px;
}

.eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--ember);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.bonus h2,
.briefing h2,
.chapter-hero h2,
.updates-card h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(3.2rem, 9vw, 8.8rem);
  text-align: center;
}

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

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.product-card {
  position: relative;
  width: min(470px, 78vw);
  min-height: 590px;
  padding: 46px 38px;
  border: 3px solid rgba(255, 250, 240, 0.78);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.06), rgba(255, 250, 240, 0.01)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 42px),
    #202c43;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(-2deg);
}

.product-card::before,
.product-card::after {
  position: absolute;
  content: "";
  border-radius: 22px;
}

.product-card::before {
  inset: auto 24px 28px 24px;
  height: 180px;
  background:
    linear-gradient(90deg, var(--ember), var(--blue), var(--acid)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 18px, transparent 18px 42px);
  background-blend-mode: hard-light;
  opacity: 0.76;
}

.product-card::after {
  right: 30px;
  bottom: 150px;
  width: 170px;
  height: 54px;
  background: var(--acid);
  box-shadow: -150px 70px 0 rgba(255, 90, 47, 0.86), -48px 120px 0 rgba(60, 108, 255, 0.78);
}

.product-topline,
.product-subtitle {
  position: relative;
  z-index: 1;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.product-title {
  position: relative;
  z-index: 1;
  margin: 54px 0 18px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(3.6rem, 8vw, 5.8rem);
  letter-spacing: -0.08em;
  line-height: 0.82;
  text-align: center;
}

.product-title small {
  display: block;
  margin-top: 16px;
  color: var(--acid);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.product-grid {
  position: absolute;
  right: 24px;
  bottom: 28px;
  left: 24px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.product-grid span {
  padding: 12px 8px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.08);
  color: rgba(255, 250, 240, 0.75);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.social-proof {
  position: absolute;
  width: 245px;
  padding: 16px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.social-proof strong,
.social-proof span {
  display: block;
}

.social-proof strong {
  margin-bottom: 8px;
  color: var(--acid);
  font-size: 0.86rem;
}

.social-proof span {
  color: rgba(255, 250, 240, 0.78);
  font-weight: 800;
  line-height: 1.45;
}

.proof-left {
  top: 130px;
  left: max(24px, 14vw);
  transform: rotate(-5deg);
}

.proof-right {
  right: max(20px, 11vw);
  bottom: 150px;
  transform: rotate(4deg);
}

.offer-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 22px;
  width: min(980px, 100%);
  margin: -38px auto 0;
  padding: 20px;
  border-radius: 26px;
  color: var(--ink);
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.offer-strip > div {
  display: grid;
  align-items: center;
  gap: 6px;
  min-height: 120px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
}

.offer-strip strong {
  font-size: 1rem;
}

.offer-strip small {
  color: var(--muted);
  font-weight: 800;
}

.strip-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: var(--paper-2);
  font-weight: 900;
}

.price-box {
  background: var(--ink) !important;
  color: var(--paper-2);
}

.price-box strong {
  color: var(--acid);
  font-family: "Archivo Black", sans-serif;
  font-size: 2.8rem;
  letter-spacing: -0.07em;
}

.price-box a {
  padding: 14px 18px;
}

.trust-line {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 46px auto 0;
  text-align: center;
}

.trust-line span {
  color: #ffc52e;
  letter-spacing: 0.24em;
}

.trust-line p {
  color: rgba(255, 250, 240, 0.72);
  font-weight: 800;
}

.section-pad {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.briefing h2,
.bonus h2,
.faq h2 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

.pain-grid,
.benefit-grid,
.bonus-row,
.preview-grid {
  display: grid;
  gap: 18px;
}

.pain-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pain-grid article,
.benefit-grid article,
.bonus-row article,
.preview-grid article,
.testimonial-track article,
.updates-card,
.briefing-card,
.dashboard-shell,
.solution-card {
  border: 1px solid rgba(16, 21, 33, 0.1);
  background: rgba(255, 250, 240, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.pain-grid article,
.solution-card,
.benefit-grid article,
.bonus-row article,
.testimonial-track article,
.preview-grid article,
.briefing-card,
.dashboard-shell,
.updates-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.pain-grid article.is-visible,
.solution-card.is-visible,
.benefit-grid article.is-visible,
.bonus-row article.is-visible,
.testimonial-track article.is-visible,
.preview-grid article.is-visible,
.briefing-card.is-visible,
.dashboard-shell.is-visible,
.updates-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pain-grid article {
  min-height: 250px;
  padding: 24px;
  border-radius: var(--radius);
}

.pain-grid article:nth-child(even) {
  transform: translateY(32px);
}

.pain-grid article:nth-child(even).is-visible {
  transform: translateY(32px);
}

.pain-grid span {
  color: var(--ember);
  font-size: 2rem;
}

.pain-grid p {
  margin: 28px 0 0;
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.45;
}

.solution {
  width: min(1180px, calc(100% - 32px));
}

.solution-card {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(26px, 5vw, 58px);
  border-radius: 44px;
}

.mini-cover {
  display: grid;
  min-height: 440px;
  place-items: center;
  border-radius: 30px;
  color: var(--paper-2);
  background:
    radial-gradient(circle at 72% 28%, rgba(215, 255, 63, 0.34), transparent 11rem),
    linear-gradient(145deg, var(--night), #111827);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
  transform: rotate(-4deg);
}

.mini-cover span {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-family: "Archivo Black", sans-serif;
}

.mini-cover strong {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-align: center;
}

.solution-card h2 {
  margin: 0 0 24px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.3rem, 5vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.star-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.star-list li {
  position: relative;
  padding-left: 34px;
  color: #333b4a;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.55;
}

.star-list li::before {
  position: absolute;
  left: 0;
  color: var(--ember);
  content: "✦";
}

.inline-buy {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.inline-buy strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 3rem;
  letter-spacing: -0.08em;
}

.inline-buy a {
  padding: 18px 24px;
}

.briefing {
  width: min(1180px, calc(100% - 32px));
}

.briefing-card {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 46px);
  border-radius: 42px;
}

.form-intro {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: 24px;
  color: var(--paper-2);
  background:
    radial-gradient(circle at 90% 20%, rgba(215, 255, 63, 0.24), transparent 14rem),
    linear-gradient(135deg, var(--night), #111827);
}

.form-intro strong {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.form-intro p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
  font-weight: 800;
  line-height: 1.6;
}

fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(16, 21, 33, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.64);
}

legend {
  padding: 0 10px;
  color: var(--ember);
  font-family: "Archivo Black", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.briefing-card label,
.choice-row span {
  display: grid;
  gap: 8px;
  color: #303848;
  font-size: 0.94rem;
  font-weight: 900;
}

.briefing-card input,
.briefing-card select,
.briefing-card textarea {
  width: 100%;
  border: 2px solid rgba(16, 21, 33, 0.12);
  border-radius: 16px;
  outline: none;
  background: var(--paper-2);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.briefing-card input,
.briefing-card select {
  min-height: 54px;
  padding: 0 16px;
}

.briefing-card textarea {
  min-height: 110px;
  padding: 16px;
  resize: vertical;
}

.briefing-card input:focus,
.briefing-card select:focus,
.briefing-card textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(60, 108, 255, 0.12);
  transform: translateY(-1px);
}

.full {
  grid-column: 1 / -1;
}

.field-note {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-left: 4px solid var(--ember);
  border-radius: 16px;
  background: rgba(255, 90, 47, 0.08);
}

.field-note strong {
  color: var(--ink);
  font-family: "Archivo Black", sans-serif;
  letter-spacing: -0.03em;
}

.field-note p {
  margin: 0;
  color: #5a6374;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.choice-row,
.check-grid {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px dashed rgba(16, 21, 33, 0.18);
  border-radius: 18px;
  background: rgba(243, 240, 232, 0.72);
}

.choice-row {
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
}

.choice-row label,
.check-grid label,
.declaration {
  display: flex;
  align-items: center;
  gap: 10px;
}

.briefing-card input[type="radio"],
.briefing-card input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--ember);
}

.check-grid {
  grid-template-columns: repeat(2, 1fr);
}

.declaration {
  align-items: flex-start;
  padding: 18px;
  border-radius: 18px;
  background: rgba(215, 255, 63, 0.18);
  line-height: 1.5;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px 0;
}

.form-actions button {
  min-height: 60px;
  border: 0;
  padding: 18px 26px;
  cursor: pointer;
  font: inherit;
}

.form-actions p {
  max-width: 520px;
  margin: 0;
  color: #465064;
  font-weight: 900;
  line-height: 1.5;
}

.briefing-card.is-submitted {
  padding: 24px;
}

.briefing-card.is-submitted .form-intro,
.briefing-card.is-submitted fieldset,
.briefing-card.is-submitted .form-actions button {
  display: none;
}

.briefing-card.is-submitted .form-actions {
  display: block;
  padding: 0;
}

.briefing-card.is-submitted #form-status,
#form-status.is-success,
#form-status.is-error {
  width: 100%;
  max-width: none;
  padding: 20px 22px;
  border-radius: 22px;
}

#form-status.is-success {
  border: 2px solid rgba(54, 128, 75, 0.2);
  background: linear-gradient(135deg, rgba(215, 255, 63, 0.32), rgba(255, 255, 255, 0.92));
  color: #1f5130;
  box-shadow: 0 18px 45px rgba(31, 81, 48, 0.12);
}

#form-status.is-error {
  border: 2px solid rgba(255, 90, 47, 0.22);
  background: rgba(255, 90, 47, 0.1);
  color: #9f2c13;
}

.dashboard {
  width: min(1180px, calc(100% - 32px));
}

.dashboard-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 90, 47, 0.2), transparent 24rem),
    radial-gradient(circle at 84% 18%, rgba(215, 255, 63, 0.14), transparent 22rem),
    linear-gradient(135deg, #111827, var(--night));
}

.dashboard-standalone {
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding: 24px 0;
}

.dashboard-shell {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 46px);
  border-radius: 42px;
  color: var(--paper-2);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 90, 47, 0.22), transparent 18rem),
    radial-gradient(circle at 88% 16%, rgba(215, 255, 63, 0.16), transparent 18rem),
    linear-gradient(135deg, var(--night), #111827);
}

.dashboard-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.dashboard-head .eyebrow {
  text-align: left;
}

.dashboard-head h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.5rem, 7vw, 6.2rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.dashboard-head h1 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.8rem, 8vw, 7rem);
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.dashboard-head p {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 800;
  line-height: 1.6;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.ghost-button,
.danger-button,
.delete-order,
.save-report,
.login-card button,
.inpi-search button {
  min-height: 48px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.ghost-button {
  color: var(--ink);
  background: var(--acid);
}

.save-report {
  color: var(--paper-2);
  background: rgba(60, 108, 255, 0.28);
}

.login-card button {
  color: var(--ink);
  background: var(--acid);
}

.inpi-search button {
  color: var(--ink);
  background: var(--acid);
}

.danger-button,
.delete-order {
  color: var(--paper-2);
  background: rgba(255, 90, 47, 0.22);
}

.login-card {
  display: grid;
  grid-template-columns: 1fr minmax(160px, 220px) minmax(160px, 220px) auto;
  gap: 14px;
  align-items: end;
  padding: 20px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.08);
}

.login-card strong {
  display: block;
  color: var(--acid);
  font-family: "Archivo Black", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.06em;
}

.login-card p {
  margin: 6px 0 0;
  color: rgba(255, 250, 240, 0.7);
  font-weight: 800;
  line-height: 1.5;
}

.login-card label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.86rem;
  font-weight: 900;
}

.login-card input {
  min-height: 50px;
  border: 2px solid rgba(255, 250, 240, 0.18);
  border-radius: 14px;
  outline: none;
  padding: 0 14px;
  background: var(--paper-2);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
}

#login-status {
  grid-column: 1 / -1;
  margin: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.metric-grid article {
  padding: 20px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.08);
}

.metric-grid span {
  display: block;
  color: rgba(255, 250, 240, 0.64);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--acid);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  letter-spacing: -0.08em;
}

.inpi-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.08);
}

.inpi-panel-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
}

.inpi-panel-head .eyebrow {
  margin-bottom: 8px;
  text-align: left;
}

.inpi-panel h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.inpi-panel-head p {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.7);
  font-weight: 800;
  line-height: 1.5;
}

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

.inpi-search {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(150px, 0.28fr) auto;
  gap: 12px;
  align-items: end;
}

.inpi-search label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.86rem;
  font-weight: 900;
}

.inpi-search input,
.inpi-search select {
  min-height: 50px;
  border: 2px solid rgba(255, 250, 240, 0.18);
  border-radius: 14px;
  outline: none;
  padding: 0 14px;
  background: var(--paper-2);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
}

.inpi-status {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 800;
}

.inpi-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.inpi-summary article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.07);
}

.inpi-summary span {
  display: block;
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inpi-summary strong {
  display: block;
  margin-top: 6px;
  color: var(--acid);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1;
}

.inpi-results {
  display: grid;
  gap: 12px;
}

.inpi-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 20px;
  background: rgba(17, 24, 39, 0.42);
}

.inpi-result-main > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--acid);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inpi-result h3 {
  margin: 0;
  color: var(--paper-2);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.inpi-result p {
  margin: 8px 0 0;
  color: rgba(255, 250, 240, 0.68);
  font-weight: 800;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.inpi-detail-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--acid);
  font-weight: 900;
}

.inpi-result dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.inpi-result dl div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.08);
}

.inpi-result dt {
  color: rgba(255, 250, 240, 0.55);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inpi-result dd {
  margin: 6px 0 0;
  color: var(--paper-2);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.inpi-detail-data {
  grid-column: 1 / -1;
  min-width: 0;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  padding-top: 12px;
}

.inpi-detail-data summary {
  width: fit-content;
  cursor: pointer;
  color: var(--acid);
  font-weight: 900;
}

.inpi-detail-body {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.inpi-brand-image {
  max-width: min(240px, 100%);
  max-height: 150px;
  object-fit: contain;
  padding: 10px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.94);
}

.inpi-detail-grid,
.inpi-renewal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.inpi-detail-section {
  display: grid;
  gap: 8px;
}

.inpi-detail-section h4 {
  margin: 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inpi-detail-list {
  display: grid;
  gap: 8px;
}

.inpi-detail-list article,
.inpi-detail-list > span,
.inpi-renewal-grid div,
.inpi-detail-grid div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.055);
}

.inpi-detail-list article {
  display: grid;
  gap: 5px;
}

.inpi-detail-list strong {
  color: var(--paper-2);
  overflow-wrap: anywhere;
}

.inpi-detail-list span,
.inpi-detail-list small {
  display: block;
  width: auto;
  margin: 0;
  border-radius: 0;
  padding: 0;
  color: rgba(255, 250, 240, 0.62);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: none;
}

.inpi-detail-list p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.inpi-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}

.inpi-pagination span {
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
}

.inpi-pagination div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inpi-pagination button {
  min-width: 42px;
  min-height: 38px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  color: var(--paper-2);
  background: rgba(255, 250, 240, 0.06);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.inpi-pagination button.is-active {
  color: var(--ink);
  background: var(--acid);
}

.inpi-panel-actions button:disabled,
.inpi-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.orders-panel {
  display: grid;
  gap: 16px;
}

.orders-empty {
  padding: 28px;
  border: 1px dashed rgba(255, 250, 240, 0.26);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.06);
}

.orders-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.orders-empty p,
.dashboard-error {
  margin: 0;
  color: rgba(255, 250, 240, 0.7);
  font-weight: 800;
}

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

.order-list-card {
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.075), rgba(255, 250, 240, 0.035)),
    rgba(16, 24, 39, 0.68);
}

.order-list-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 14px 16px;
  color: var(--paper-2);
  text-decoration: none;
}

.order-list-link h3 {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  letter-spacing: 0;
  line-height: 1.15;
}

.order-open-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--acid);
  font-weight: 900;
}

.order-card {
  display: grid;
  gap: 0;
  padding: 16px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.09);
}

.order-main {
  display: grid;
  grid-template-columns: 1fr minmax(160px, 220px);
  gap: 16px;
  align-items: start;
}

.order-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 54px;
  border: 0;
  padding: 0;
  color: var(--paper-2);
  text-align: left;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.order-id {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 0;
  color: var(--acid);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.order-summary h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  letter-spacing: 0;
  line-height: 1.1;
}

.order-toggle-label {
  color: rgba(255, 250, 240, 0.64);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.order-expanded {
  display: grid;
  gap: 14px;
  padding-top: 18px;
}

.order-expanded[hidden] {
  display: none;
}

.order-contact {
  margin: 0;
  color: rgba(255, 250, 240, 0.68);
  font-weight: 800;
  line-height: 1.5;
}

.order-status {
  min-height: 50px;
  border: 2px solid rgba(215, 255, 63, 0.34);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper-2);
  font: inherit;
  font-weight: 900;
}

.order-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.order-details span {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.08);
  color: rgba(255, 250, 240, 0.74);
  font-weight: 800;
  line-height: 1.5;
}

.order-details strong {
  color: var(--paper-2);
}

.order-raw {
  border-color: rgba(255, 250, 240, 0.14);
  background: rgba(0, 0, 0, 0.18);
}

.order-raw pre {
  overflow: auto;
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.82rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.delete-order {
  justify-self: start;
}

.saved-report {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid rgba(215, 255, 63, 0.28);
  border-radius: 8px;
  background: rgba(215, 255, 63, 0.08);
  color: rgba(255, 250, 240, 0.78);
  font-weight: 900;
}

.saved-report a {
  color: var(--acid);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.order-page-shell {
  grid-template-columns: 1fr;
}

.order-detail {
  display: grid;
  gap: 16px;
}

.order-detail-hero,
.order-detail-section {
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.075), rgba(255, 250, 240, 0.035)),
    rgba(16, 24, 39, 0.68);
}

.order-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
  gap: 16px;
  align-items: start;
  padding: 22px;
}

.order-detail-hero h1 {
  margin: 8px 0 0;
  overflow-wrap: anywhere;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.order-detail-hero p {
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.68);
  font-weight: 800;
  line-height: 1.5;
}

.order-detail-section {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.order-detail-section h2 {
  margin: 0;
  font-size: 1.15rem;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.order-detail-grid-full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-detail-grid div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.08);
}

.order-detail-grid dt {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-detail-grid dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: rgba(255, 250, 240, 0.82);
  font-weight: 800;
  line-height: 1.45;
}

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

.benefit-grid article {
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

.benefit-grid article:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.benefit-grid span {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit-grid h3,
.bonus-row h3 {
  margin: 0 0 12px;
  font-size: 1.34rem;
  letter-spacing: -0.04em;
}

.benefit-grid p,
.bonus-row p,
.preview-grid small,
.updates-card p,
.faq p,
.final-cta p {
  color: #4c5566;
  font-weight: 700;
  line-height: 1.65;
}

.bonus {
  width: min(1180px, calc(100% - 32px));
  padding-right: clamp(18px, 4vw, 46px);
  padding-left: clamp(18px, 4vw, 46px);
  border-radius: 44px;
  background: #dfe5ff;
}

.bonus-row {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.bonus-row article {
  padding: 30px;
  border-radius: 30px;
  background: var(--paper-2);
}

.bonus-number {
  margin-bottom: 30px;
  color: var(--blue);
  font-family: "Archivo Black", sans-serif;
  font-size: 6rem;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.testimonial-track {
  display: grid;
  grid-auto-columns: minmax(250px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 12px 4px 28px;
  scroll-snap-type: x mandatory;
}

.testimonial-track article {
  min-height: 245px;
  padding: 24px;
  border-radius: 24px;
  scroll-snap-align: start;
}

.testimonial-track strong {
  display: block;
  margin-bottom: 26px;
}

.testimonial-track p {
  color: #485064;
  font-weight: 800;
  line-height: 1.6;
}

.chapters {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1120px) / 2));
  padding-left: max(24px, calc((100vw - 1120px) / 2));
  color: var(--paper-2);
  background:
    linear-gradient(180deg, transparent 0 120px, var(--night) 120px 100%);
}

.chapter-hero {
  max-width: 780px;
  margin: 0 auto 34px;
  padding: 64px 24px 20px;
  text-align: center;
}

.chapter-hero h2 {
  font-size: clamp(3rem, 8vw, 7rem);
}

.chapter-hero p {
  color: rgba(255, 250, 240, 0.7);
  font-weight: 800;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.tab {
  padding: 16px 20px;
  border: 0;
  border-radius: 14px;
  color: rgba(255, 250, 240, 0.82);
  background: rgba(255, 250, 240, 0.1);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.tab.is-active {
  color: var(--ink);
  background: var(--acid);
}

.tab-panels {
  max-width: 760px;
  margin: 0 auto;
}

.tab-panel {
  display: none;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.tab-panel.is-active {
  display: block;
}

.tab-panel h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.tab-panel p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 800;
  line-height: 1.65;
}

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

.preview-grid article {
  display: grid;
  min-height: 360px;
  align-content: end;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.88), rgba(255, 250, 240, 0.98)),
    radial-gradient(circle at 50% 22%, rgba(60, 108, 255, 0.24), transparent 8rem);
}

.preview-grid span {
  color: var(--ember);
  font-family: "Archivo Black", sans-serif;
  font-size: 5rem;
  letter-spacing: -0.1em;
}

.preview-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.updates-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px);
  border-radius: 38px;
  text-align: center;
}

.updates-card h2 {
  font-size: clamp(2.3rem, 5vw, 5rem);
}

.faq {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 920px) / 2));
  padding-left: max(24px, calc((100vw - 920px) / 2));
  color: var(--paper-2);
  background: var(--night);
}

.faq h2 {
  margin-bottom: 36px;
  text-align: center;
}

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

details {
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

summary {
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(255, 250, 240, 0.72);
}

.final-cta {
  display: grid;
  min-height: 620px;
  place-items: center;
  padding: 86px 24px;
  color: var(--ink);
  text-align: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(215, 255, 63, 0.78), transparent 15rem),
    linear-gradient(135deg, #fff6df, #e6ecff);
}

.final-cta h2 {
  max-width: 980px;
  font-size: clamp(3rem, 8vw, 8rem);
}

.final-cta p {
  max-width: 680px;
  margin: 0;
  font-size: 1.18rem;
}

.final-cta a {
  padding: 20px 28px;
}

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

  .hero-stage {
    min-height: 520px;
  }

  .social-proof {
    position: relative;
    inset: auto;
    width: min(100%, 320px);
    margin: 16px auto;
    transform: none;
  }

  .hero-stage {
    gap: 10px;
  }

  .offer-strip,
  .pain-grid,
  .benefit-grid,
  .bonus-row,
  .preview-grid,
  .form-grid,
  .check-grid,
  .dashboard-head,
  .login-card,
  .metric-grid,
  .inpi-panel-head,
  .inpi-search,
  .inpi-result,
  .order-main,
  .order-details,
  .solution-card {
    grid-template-columns: 1fr;
  }

  .choice-row {
    grid-template-columns: 1fr;
  }

  .dashboard-actions {
    justify-content: flex-start;
  }

  .pain-grid article:nth-child(even) {
    transform: none;
  }

  .solution-card {
    border-radius: 30px;
  }

  .mini-cover {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 12px 14px;
    font-size: 0.86rem;
  }

  .hero {
    width: calc(100% - 12px);
    border-radius: 24px;
  }

  .hero-stage {
    min-height: auto;
    padding-top: 32px;
  }

  .product-card {
    min-height: 470px;
    padding: 34px 22px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-strip {
    margin-top: 26px;
  }

  .section-pad {
    width: min(100% - 24px, 1120px);
    padding: 72px 0;
  }

  .bonus {
    width: calc(100% - 12px);
  }
}

/* Premium dashboard */
.dashboard-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(60, 108, 255, 0.14), transparent 36%),
    linear-gradient(315deg, rgba(255, 90, 47, 0.12), transparent 32%),
    #0c111d;
}

.dashboard-page::before {
  opacity: 0.1;
  background-size: 34px 34px;
}

.dashboard-standalone {
  align-items: stretch;
  padding: 16px;
}

.dashboard {
  width: min(1440px, 100%);
  min-height: calc(100vh - 32px);
  margin: 0 auto;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr);
  gap: 0;
  min-height: calc(100vh - 32px);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 14px;
  color: var(--paper-2);
  background: rgba(13, 18, 31, 0.92);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px);
}

.dashboard-page .dashboard-shell {
  opacity: 1;
  transform: none;
}

body.dashboard-page:not(.is-authenticated) {
  display: grid;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(132deg, transparent 0 25%, rgba(255, 250, 240, 0.07) 25% 25.2%, transparent 25.2% 58%, rgba(255, 250, 240, 0.055) 58% 58.2%, transparent 58.2%),
    linear-gradient(135deg, #202523 0 30%, #0c1110 30% 56%, #1b211f 56% 100%);
}

body.dashboard-page:not(.is-authenticated)::before {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 250, 240, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

body.dashboard-page:not(.is-authenticated) .dashboard-standalone {
  align-items: center;
  padding: clamp(16px, 4vw, 42px);
}

body.dashboard-page:not(.is-authenticated) .dashboard {
  display: grid;
  width: min(1260px, 100%);
  min-height: min(760px, calc(100vh - 32px));
  align-items: center;
}

body.dashboard-page:not(.is-authenticated) .dashboard-shell {
  display: block;
  min-height: auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.dashboard-page:not(.is-authenticated) .dashboard-main {
  padding: 0;
}

body.dashboard-page:not(.is-authenticated) .dashboard-head {
  display: none;
}

.dashboard-sidebar {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  min-height: 100%;
  padding: 22px;
  border-right: 1px solid rgba(255, 250, 240, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.03)),
    #0f1625;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.dashboard-brand span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--acid);
  font-family: "Archivo Black", sans-serif;
}

.dashboard-brand strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.34rem;
  letter-spacing: -0.04em;
}

.dashboard-menu {
  display: grid;
  align-content: start;
  gap: 8px;
}

.dashboard-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 12px;
  color: rgba(255, 250, 240, 0.7);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.dashboard-nav span {
  color: rgba(255, 250, 240, 0.38);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.dashboard-nav:hover,
.dashboard-nav.is-active {
  border-color: rgba(215, 255, 63, 0.22);
  color: var(--paper-2);
  background: rgba(215, 255, 63, 0.11);
}

.dashboard-nav.is-active span {
  color: var(--acid);
}

.dashboard-sidebar-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(215, 255, 63, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 255, 63, 0.14), rgba(60, 108, 255, 0.1)),
    rgba(255, 250, 240, 0.05);
}

.dashboard-sidebar-card span,
.operations-grid span,
.report-stack span {
  color: rgba(255, 250, 240, 0.56);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dashboard-sidebar-card strong {
  font-size: 1.02rem;
}

.dashboard-main {
  display: grid;
  align-content: start;
  gap: 22px;
  min-width: 0;
  padding: clamp(18px, 3vw, 34px);
}

.dashboard-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.1);
}

.dashboard-head .eyebrow,
.section-title-row .eyebrow,
.inpi-panel-head .eyebrow {
  margin-bottom: 6px;
  color: var(--acid);
  text-align: left;
}

.dashboard-head h1,
.section-title-row h2,
.inpi-panel h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1;
}

.dashboard-head h1 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.dashboard-head p {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.62);
  font-weight: 800;
  line-height: 1.5;
}

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

.ghost-button,
.danger-button,
.delete-order,
.save-report,
.login-card button,
.inpi-search button {
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 14px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.ghost-button,
.save-report,
.login-card button,
.inpi-search button {
  border-color: rgba(215, 255, 63, 0.32);
  color: #101521;
  background: var(--acid);
}

.save-report {
  border-color: rgba(60, 108, 255, 0.42);
  color: #fffaf0;
  background: rgba(60, 108, 255, 0.28);
}

.danger-button,
.delete-order {
  border-color: rgba(255, 90, 47, 0.34);
  color: #fffaf0;
  background: rgba(255, 90, 47, 0.24);
}

.ghost-button:hover,
.danger-button:hover,
.delete-order:hover,
.save-report:hover,
.login-card button:hover,
.inpi-search button:hover {
  transform: translateY(-1px);
}

.login-card,
.dashboard-view {
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 250, 240, 0.06);
}

.login-card {
  grid-template-columns: minmax(250px, 1fr) minmax(160px, 220px) minmax(160px, 220px) auto;
  padding: 18px;
}

.login-card strong {
  color: var(--paper-2);
  font-size: 1.35rem;
}

.login-card input,
.inpi-search input,
.order-status {
  border-radius: 8px;
  border-color: rgba(255, 250, 240, 0.15);
}

.login-visual,
.login-panel,
.login-brand,
.login-orbit,
.login-feature {
  position: relative;
}

body.dashboard-page:not(.is-authenticated) .login-card {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(360px, 460px);
  gap: clamp(56px, 7vw, 96px);
  align-items: center;
  width: min(1080px, 100%);
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

body.dashboard-page:not(.is-authenticated) .login-visual,
body.dashboard-page:not(.is-authenticated) .login-panel {
  border: 1px solid rgba(255, 250, 240, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.095), rgba(255, 250, 240, 0.045)),
    rgba(42, 47, 45, 0.86);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

body.dashboard-page:not(.is-authenticated) .login-visual {
  display: grid;
  min-height: 560px;
  align-content: space-between;
  overflow: hidden;
  border-radius: 26px;
  padding: 28px clamp(26px, 4vw, 46px) 42px;
}

body.dashboard-page:not(.is-authenticated) .login-visual::before {
  position: absolute;
  inset: 74px auto auto 50%;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(142, 255, 45, 0.22);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
  box-shadow:
    inset 0 0 0 78px rgba(255, 250, 240, 0.6),
    inset 0 0 0 138px rgba(142, 255, 45, 0.08),
    0 0 80px rgba(142, 255, 45, 0.14);
}

body.dashboard-page:not(.is-authenticated) .login-pill {
  z-index: 1;
  justify-self: start;
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 999px;
  padding: 10px 16px;
  color: rgba(255, 250, 240, 0.62);
  background: rgba(12, 17, 16, 0.34);
  font-size: 0.78rem;
  font-weight: 900;
}

body.dashboard-page:not(.is-authenticated) .login-orbit {
  display: grid;
  min-height: 330px;
  place-items: center;
}

body.dashboard-page:not(.is-authenticated) .login-core {
  z-index: 2;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border-radius: 26px;
  color: #0c1110;
  background: linear-gradient(180deg, #a7ff3d, #75f51d);
  box-shadow: 0 28px 70px rgba(99, 255, 26, 0.28);
  font-family: "Archivo Black", sans-serif;
  font-size: 3.2rem;
}

body.dashboard-page:not(.is-authenticated) .login-feature {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  width: 190px;
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 14px;
  padding: 14px;
  background: rgba(36, 42, 39, 0.78);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

body.dashboard-page:not(.is-authenticated) .login-feature span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: #101521;
  background: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
}

body.dashboard-page:not(.is-authenticated) .login-feature strong {
  color: var(--paper-2);
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
  letter-spacing: 0;
}

body.dashboard-page:not(.is-authenticated) .login-feature small {
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
}

body.dashboard-page:not(.is-authenticated) .login-feature-left {
  top: 126px;
  left: clamp(16px, 4vw, 70px);
}

body.dashboard-page:not(.is-authenticated) .login-feature-right {
  top: 150px;
  right: clamp(16px, 4vw, 64px);
}

body.dashboard-page:not(.is-authenticated) .login-feature-bottom {
  right: clamp(28px, 7vw, 118px);
  bottom: 220px;
}

body.dashboard-page:not(.is-authenticated) .login-visual h2 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto 18px;
  color: var(--paper-2);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
}

body.dashboard-page:not(.is-authenticated) .login-visual p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 250, 240, 0.62);
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

body.dashboard-page:not(.is-authenticated) .login-panel {
  display: grid;
  gap: 22px;
  border-radius: 22px;
  padding: clamp(28px, 4vw, 42px);
}

.login-brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 0 12px;
  align-items: center;
  justify-self: center;
  margin-bottom: 8px;
}

.login-brand span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  color: #101521;
  background: var(--acid);
  font-family: "Archivo Black", sans-serif;
  font-size: 1.2rem;
}

.login-brand strong {
  color: var(--paper-2);
  font-family: "Manrope", sans-serif;
  font-size: 1.24rem;
  letter-spacing: 0;
  line-height: 1;
}

.login-brand small {
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.login-copy {
  display: grid;
  gap: 10px;
}

body.dashboard-page:not(.is-authenticated) .login-copy strong {
  color: var(--paper-2);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2rem);
  letter-spacing: 0;
}

body.dashboard-page:not(.is-authenticated) .login-copy p {
  margin: 0;
  color: rgba(255, 250, 240, 0.62);
  font-weight: 800;
}

body.dashboard-page:not(.is-authenticated) .login-card label {
  display: grid;
  gap: 10px;
  color: rgba(255, 250, 240, 0.9);
  font-size: 0.9rem;
  font-weight: 900;
}

body.dashboard-page:not(.is-authenticated) .login-card input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 10px;
  padding: 0 16px;
  color: var(--paper-2);
  background: rgba(12, 17, 16, 0.58);
  font: inherit;
  font-weight: 900;
}

body.dashboard-page:not(.is-authenticated) .login-card input::placeholder {
  color: rgba(255, 250, 240, 0.38);
}

body.dashboard-page:not(.is-authenticated) .login-card input:focus {
  border-color: rgba(142, 255, 45, 0.72);
  box-shadow: 0 0 0 4px rgba(142, 255, 45, 0.12);
}

body.dashboard-page:not(.is-authenticated) .login-card button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  color: #101521;
  background: linear-gradient(180deg, #a7ff3d, #74f51d);
  box-shadow: 0 22px 50px rgba(95, 255, 24, 0.2);
}

body.dashboard-page:not(.is-authenticated) .login-create {
  margin: -2px 0 0;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

body.dashboard-page:not(.is-authenticated) .login-create a {
  color: var(--acid);
}

body.dashboard-page:not(.is-authenticated) .login-create a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.dashboard-page:not(.is-authenticated) #login-status {
  min-height: 22px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.dashboard-view {
  display: none;
  gap: 18px;
  padding: clamp(16px, 2.4vw, 24px);
}

.dashboard-view.is-active {
  display: grid;
}

.section-title-row,
.inpi-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.section-title-row h2,
.inpi-panel h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-grid article,
.operations-grid article,
.report-stack article,
.inpi-result,
.order-card,
.orders-empty {
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.075), rgba(255, 250, 240, 0.035)),
    rgba(16, 24, 39, 0.68);
}

.metric-grid article {
  min-width: 0;
  padding: 18px;
}

.metric-grid strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.operations-grid,
.report-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.operations-grid article,
.report-stack article {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.operations-grid strong,
.report-stack strong {
  font-size: 1.18rem;
}

.operations-grid p,
.report-stack p {
  margin: 0;
  color: rgba(255, 250, 240, 0.64);
  font-weight: 800;
  line-height: 1.55;
}

.inpi-panel {
  background: rgba(255, 250, 240, 0.055);
}

.inpi-search {
  grid-template-columns: minmax(220px, 1fr) auto;
}

.inpi-result dl div,
.order-details span,
.order-raw {
  border-radius: 8px;
}

.orders-list {
  gap: 12px;
}

.order-card {
  padding: 16px;
}

.order-summary h3 {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.order-details {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.order-card > .ghost-button,
.delete-order {
  justify-self: start;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.order-actions .ghost-button,
.order-actions .save-report,
.order-actions .delete-order {
  min-height: 44px;
}

@media (max-width: 1040px) {
  body.dashboard-page:not(.is-authenticated) .login-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body.dashboard-page:not(.is-authenticated) .login-visual {
    min-height: 440px;
  }

  body.dashboard-page:not(.is-authenticated) .login-feature-bottom {
    bottom: 138px;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    grid-template-rows: auto auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.1);
  }

  .dashboard-menu {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dashboard-sidebar-card {
    display: none;
  }

  .dashboard-nav {
    justify-content: center;
  }
}

@media (max-width: 780px) {
  body.dashboard-page:not(.is-authenticated) .dashboard-standalone {
    padding: 14px;
  }

  body.dashboard-page:not(.is-authenticated) .dashboard,
  body.dashboard-page:not(.is-authenticated) .dashboard-shell {
    min-height: auto;
  }

  body.dashboard-page:not(.is-authenticated) .login-card {
    width: 100%;
  }

  body.dashboard-page:not(.is-authenticated) .login-visual {
    display: none;
  }

  body.dashboard-page:not(.is-authenticated) .login-panel {
    padding: 24px 18px;
  }

  .dashboard-standalone {
    padding: 8px;
  }

  .dashboard,
  .dashboard-shell {
    min-height: calc(100vh - 16px);
  }

  .dashboard-shell,
  .dashboard-head,
  .login-card,
  .section-title-row,
  .inpi-panel-head,
  .inpi-search,
  .inpi-summary,
  .inpi-result,
  .inpi-detail-grid,
  .inpi-renewal-grid,
  .order-detail-hero,
  .order-detail-grid,
  .order-detail-grid-full,
  .order-details,
  .operations-grid,
  .report-stack,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-main,
  .dashboard-sidebar {
    padding: 16px;
  }

  .dashboard-menu {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .dashboard-nav {
    flex: 0 0 auto;
    width: auto;
    min-width: 138px;
  }

  .dashboard-actions,
  .section-title-row,
  .inpi-panel-actions {
    justify-content: start;
  }

  .order-main,
  .order-summary,
  .order-list-link {
    grid-template-columns: 1fr;
  }

  .order-toggle-label {
    white-space: normal;
  }
}

.dashboard-shell.order-page-shell {
  grid-template-columns: minmax(0, 1fr);
}

.order-page-shell .dashboard-main {
  grid-column: 1;
  width: 100%;
}

.order-page-shell .dashboard-head {
  grid-template-columns: minmax(0, 1fr) auto;
}

.order-page-shell .dashboard-head h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  letter-spacing: -0.04em;
}

@media (max-width: 780px) {
  .order-page-shell .dashboard-head,
  .order-detail-hero,
  .order-detail-grid,
  .order-detail-grid-full {
    grid-template-columns: 1fr;
  }
}
