:root {
  --navy-950: #010a27;
  --navy-900: #020e36;
  --navy-800: #071b4b;
  --navy-700: #112b63;
  --coral-600: #f24f3c;
  --coral-500: #ff5b47;
  --coral-100: #ffe5df;
  --ivory-100: #fbf7f2;
  --ivory-200: #f4eee8;
  --paper: #fffdfb;
  --white: #ffffff;
  --ink: #121a35;
  --muted: #606880;
  --line: #e5e0da;
  --success: #12826b;
  --shadow-sm: 0 12px 30px rgba(2, 14, 54, 0.08);
  --shadow-lg: 0 24px 65px rgba(2, 14, 54, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

/* One-click preview panels use real buttons so opening and closing never
   changes the URL fragment or the reader's position on the page. */
:where(button[data-preview-open], button[data-preview-close]) {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.preview-bar {
  position: relative;
  z-index: 70;
  padding: 7px 18px;
  background: var(--coral-500);
  color: var(--navy-950);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(229, 224, 218, 0.88);
  background: rgba(255, 253, 251, 0.94);
  backdrop-filter: blur(18px);
}

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

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(2, 14, 54, 0.18);
}

.brand-name {
  font-size: 1.04rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-nav a,
.site-nav [data-preview-open] {
  padding: 9px 12px;
  border-radius: 999px;
  color: #3d465f;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav [data-preview-open]:hover,
.site-nav a[aria-current="page"],
.site-nav [data-preview-open][aria-current="page"] {
  background: var(--ivory-200);
  color: var(--navy-900);
}

.site-nav .nav-cta {
  margin-left: 7px;
  background: var(--navy-900);
  color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  background: var(--coral-500);
  color: var(--navy-950);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* Native mobile navigation: works even when a phone file preview blocks JS. */
.native-mobile-menu {
  position: relative;
  display: none;
}

.native-mobile-menu summary {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.native-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.native-mobile-menu summary svg {
  width: 22px;
  height: 22px;
}

.native-mobile-menu summary::after {
  display: none;
  content: "\00d7";
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
}

/* Use a fixed close glyph instead of morphing SVG paths. The path transform
   rendered inconsistently in iOS file previews and could look like half an X. */
.native-mobile-menu[open] summary svg {
  display: none;
}

.native-mobile-menu[open] summary::after {
  display: block;
}

.native-mobile-panel {
  position: absolute;
  z-index: 90;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: min(340px, calc(100vw - 28px));
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: var(--navy-950);
  box-shadow: 0 24px 65px rgba(2, 14, 54, 0.28);
}

.native-mobile-panel a,
.native-mobile-panel [data-preview-open] {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 13px;
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 760;
  text-decoration: none;
}

.native-mobile-panel a::after,
.native-mobile-panel [data-preview-open]::after {
  color: var(--coral-500);
  content: "→";
}

.native-mobile-panel a:hover,
.native-mobile-panel a:focus-visible,
.native-mobile-panel [data-preview-open]:hover,
.native-mobile-panel [data-preview-open]:focus-visible,
.native-mobile-panel a[aria-current="page"],
.native-mobile-panel [data-preview-open][aria-current="page"] {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.section {
  padding: 96px 0;
}

.section-compact {
  padding: 68px 0;
}

.section-soft {
  background: var(--ivory-100);
}

.section-dark {
  background: var(--navy-900);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--coral-600);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow {
  color: #ff826f;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-900);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.2vw, 6rem);
  max-width: 930px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.2vw, 4.15rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.lede {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.27rem);
}

.section-dark .lede,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 104px;
}

.hero::before {
  position: absolute;
  top: -240px;
  right: -130px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 91, 71, 0.17) 0, rgba(255, 91, 71, 0) 68%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.16fr) minmax(350px, 0.84fr);
  gap: clamp(48px, 7vw, 100px);
}

.hero h1 {
  font-size: clamp(3.4rem, 6.3vw, 6.6rem);
}

.highlight {
  color: var(--coral-500);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral-500);
  color: var(--navy-950);
  box-shadow: 0 14px 26px rgba(242, 79, 60, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 32px rgba(242, 79, 60, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy-900);
}

.button-light {
  background: var(--white);
  color: var(--navy-900);
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  color: #4f5870;
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.micro-proof li::before {
  margin-right: 7px;
  color: var(--success);
  content: "✓";
}

.signal-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy-900), #09205a);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.signal-card::after {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border: 46px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  content: "";
}

.signal-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.signal-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-title {
  margin: 5px 0 0;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.signal-logo {
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  border: 4px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.signal-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.signal-item {
  display: grid;
  align-items: center;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.signal-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral-500);
  color: var(--navy-950);
  font-weight: 900;
}

.signal-item strong {
  display: block;
  font-size: 0.92rem;
}

.signal-item span:last-child {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.79rem;
  font-weight: 700;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 42px;
}

.section-heading > div:first-child {
  max-width: 770px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy-900);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.section-dark .text-link {
  color: var(--white);
}

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

.category-card,
.guide-card,
.value-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 9px 28px rgba(2, 14, 54, 0.045);
}

.category-card {
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 91, 71, 0.5);
  box-shadow: var(--shadow-sm);
}

.category-number {
  color: var(--coral-600);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.category-card h3 {
  max-width: 230px;
  margin-top: 50px;
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.category-symbol {
  position: absolute;
  top: 25px;
  right: 25px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--ivory-100);
  color: var(--navy-900);
  font-size: 1.35rem;
}

.method-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(46px, 8vw, 110px);
}

.method-sticky {
  position: sticky;
  top: 128px;
}

.method-list {
  display: grid;
  gap: 12px;
  counter-reset: method;
}

.method-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 17px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  counter-increment: method;
}

.method-item::before {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral-500);
  color: var(--navy-950);
  content: counter(method, decimal-leading-zero);
  font-size: 0.82rem;
  font-weight: 900;
}

.method-item h3 {
  margin: 2px 0 6px;
  font-size: 1.18rem;
}

.method-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

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

.guide-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
}

.guide-tag,
.status-pill {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--coral-100);
  color: #9f2d20;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.guide-card h3 {
  margin-top: 42px;
  font-size: 1.65rem;
}

.guide-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.guide-card .text-link {
  margin-top: auto;
}

.trust-strip {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  padding: 44px;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: var(--white);
}

.trust-strip h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.trust-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.trust-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.91rem;
  font-weight: 700;
}

.trust-points li::before {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--coral-500);
  color: var(--navy-950);
  content: "✓";
  font-weight: 900;
}

.social-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 48px 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--ivory-100), var(--white));
}

.social-panel h2 {
  max-width: 700px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.social-panel p {
  margin: 0;
  color: var(--muted);
}

.social-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
}

.page-hero {
  padding: 82px 0 68px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, var(--ivory-100), var(--paper) 70%);
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.page-hero .lede {
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--navy-900);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(45px, 8vw, 110px);
}

.content-aside {
  position: sticky;
  top: 130px;
  align-self: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ivory-100);
}

.content-aside h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.content-aside p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.article {
  max-width: 780px;
}

.article > :first-child {
  margin-top: 0;
}

.article h2 {
  margin-top: 54px;
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
}

.article h3 {
  margin-top: 32px;
}

.article p,
.article li {
  color: #404961;
}

.article ul,
.article ol {
  padding-left: 1.25rem;
}

.article li + li {
  margin-top: 9px;
}

.callout {
  margin: 34px 0;
  padding: 24px 26px;
  border-left: 4px solid var(--coral-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--ivory-100);
}

.callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-900);
}

.callout p {
  margin: 0;
}

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

.value-card {
  padding: 28px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.value-card .status-pill {
  margin-bottom: 42px;
}

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

.contact-option {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-option:hover {
  transform: translateY(-4px);
  border-color: var(--coral-500);
}

.contact-option span {
  display: block;
  margin-bottom: 48px;
  color: var(--coral-600);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-option p {
  margin: 7px 0 0;
  color: var(--muted);
}

.contact-option h2 {
  overflow-wrap: anywhere;
}

.contact-option-email {
  grid-column: 1 / -1;
  min-height: 190px;
  border-color: rgba(255, 91, 71, 0.42);
}

.legal-meta {
  margin: -4px 0 34px;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  padding: 68px 0 28px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(140px, 0.65fr));
  gap: 42px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 370px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-col h2 {
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col [data-preview-open] {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-col a:hover,
.footer-col [data-preview-open]:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--coral-500);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .native-mobile-menu {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a,
  .site-nav [data-preview-open] {
    padding: 12px 14px;
  }

  .site-nav .nav-cta {
    margin: 5px 0 0;
    text-align: center;
  }

  .hero-grid,
  .method-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

  .signal-card {
    max-width: 640px;
  }

  .method-sticky,
  .content-aside {
    position: static;
  }

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

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

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

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

  .header-inner {
    min-height: 70px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .hero {
    padding: 62px 0 76px;
  }

  .hero h1,
  h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }

  .section {
    padding: 72px 0;
  }

  .section-compact {
    padding: 54px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .category-grid,
  .guide-grid,
  .steps-grid,
  .values-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 210px;
  }

  .signal-card {
    padding: 24px;
  }

  .signal-item {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .signal-item > span:last-child {
    display: none;
  }

  .method-item {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 19px;
  }

  .method-item::before {
    width: 44px;
    height: 44px;
  }

  .trust-strip,
  .social-panel {
    padding: 30px 24px;
  }

  .social-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .social-actions {
    width: 100%;
  }

  .page-hero {
    padding: 60px 0 50px;
  }

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

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================
   TRENDWORTHY FINDS — PREMIUM HOME EXPERIENCE
   These rules intentionally scope the editorial redesign to home.
   ================================================================ */

.home-premium {
  --premium-navy: #020b29;
  --premium-navy-soft: #071844;
  --premium-coral: #ff5b47;
  --premium-coral-dark: #e84735;
  --premium-ivory: #fbf5ee;
  --premium-sand: #eee5da;
  --premium-ink: #111830;
  --premium-muted: #667087;
  background: var(--premium-ivory);
  color: var(--premium-ink);
}

.home-premium .premium-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 31px;
  padding: 5px 18px;
  background: var(--premium-coral);
  color: var(--premium-navy);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.preview-status {
  width: 7px;
  height: 7px;
  border: 2px solid rgba(2, 11, 41, 0.45);
  border-radius: 50%;
  background: var(--premium-navy);
}

.home-premium .premium-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(2, 11, 41, 0.92);
  box-shadow: none;
  backdrop-filter: blur(22px) saturate(125%);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.home-premium .premium-header.is-scrolled {
  background: rgba(2, 11, 41, 0.975);
  box-shadow: 0 12px 34px rgba(0, 5, 25, 0.2);
}

.home-premium .header-inner {
  min-height: 86px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-tagline {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.home-premium .premium-header .brand-name,
.home-premium .premium-header .brand {
  color: #ffffff;
}

.home-premium .premium-header .brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.home-premium .premium-header .site-nav a {
  color: rgba(255, 255, 255, 0.68);
}

.home-premium .premium-header .site-nav a:hover,
.home-premium .premium-header .site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.home-premium .premium-header .site-nav .nav-cta {
  padding-inline: 18px;
  background: var(--premium-coral);
  color: var(--premium-navy);
  box-shadow: 0 10px 25px rgba(255, 91, 71, 0.18);
}

.home-premium .premium-header .site-nav .nav-cta:hover {
  background: #ff715e;
  color: var(--premium-navy);
}

.premium-hero {
  position: relative;
  min-height: 820px;
  padding: 112px 0 62px;
  overflow: hidden;
  background: var(--premium-navy);
  color: #ffffff;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -420px;
  right: -250px;
  width: 980px;
  height: 980px;
  background: radial-gradient(circle, rgba(255, 91, 71, 0.21) 0, rgba(255, 91, 71, 0.05) 34%, transparent 67%);
}

.hero-glow-two {
  bottom: -450px;
  left: -390px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(56, 97, 188, 0.19) 0, transparent 67%);
}

.premium-hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: clamp(56px, 8vw, 112px);
}

.premium-hero-copy {
  position: relative;
  z-index: 2;
}

.premium-eyebrow,
.premium-section-label {
  margin: 0 0 20px;
  color: var(--premium-coral-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.135em;
  text-transform: uppercase;
}

.premium-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.premium-eyebrow::before {
  width: 30px;
  height: 2px;
  background: var(--premium-coral);
  content: "";
}

.premium-eyebrow span {
  color: #ffffff;
}

.premium-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.9rem, 6.4vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: -0.067em;
}

.premium-hero h1 span {
  background: linear-gradient(95deg, #ff604b 0%, #ff8a75 72%, #ffc2b6 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-lede {
  max-width: 670px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 1.6vw, 1.23rem);
  line-height: 1.72;
}

.premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.premium-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.premium-button:hover {
  transform: translateY(-3px);
}

.premium-button-coral {
  background: var(--premium-coral);
  color: var(--premium-navy);
  box-shadow: 0 17px 34px rgba(255, 91, 71, 0.21);
}

.premium-button-coral:hover {
  background: #ff745f;
  box-shadow: 0 21px 42px rgba(255, 91, 71, 0.28);
}

.premium-button-ghost {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
}

.premium-button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
}

.button-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(2, 11, 41, 0.1);
  font-size: 0.94rem;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 29px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.73rem;
  font-weight: 720;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-assurance i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--premium-coral);
  box-shadow: 0 0 0 4px rgba(255, 91, 71, 0.12);
}

.signal-stage {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.signal-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.signal-orbit::before,
.signal-orbit::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--premium-coral);
  box-shadow: 0 0 0 7px rgba(255, 91, 71, 0.09);
  content: "";
}

.signal-orbit-one {
  width: 590px;
  height: 590px;
}

.signal-orbit-one::before {
  top: 46px;
  right: 95px;
}

.signal-orbit-one::after {
  bottom: 63px;
  left: 76px;
}

.signal-orbit-two {
  width: 465px;
  height: 465px;
  border-style: dashed;
  transform: rotate(22deg);
}

.signal-orbit-two::before {
  top: 20px;
  left: 144px;
}

.signal-orbit-two::after {
  right: 23px;
  bottom: 112px;
}

.decision-report {
  position: relative;
  z-index: 2;
  width: min(100%, 485px);
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 29px;
  background: rgba(255, 253, 250, 0.97);
  color: var(--premium-ink);
  box-shadow: 0 38px 95px rgba(0, 0, 0, 0.42);
  transform: rotate(1.25deg);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.decision-report:hover {
  box-shadow: 0 45px 105px rgba(0, 0, 0, 0.48);
  transform: rotate(0deg) translateY(-4px);
}

.report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 19px;
  border-bottom: 1px solid #e7dfd7;
}

.report-head img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(2, 11, 41, 0.18);
}

.report-kicker,
.report-id {
  margin: 0;
  line-height: 1.2;
}

.report-kicker {
  color: var(--premium-navy);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-id {
  margin-top: 5px;
  color: #9298a7;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-question {
  padding: 24px 0 18px;
}

.report-question > span {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 999px;
  background: #ffe6e0;
  color: #9a2f22;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.report-question h2 {
  margin: 13px 0 0;
  color: var(--premium-navy);
  font-size: 1.66rem;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.report-checks {
  display: grid;
  gap: 8px;
}

.report-row {
  display: grid;
  align-items: center;
  grid-template-columns: 31px minmax(0, 1fr) auto;
  gap: 11px;
  padding: 11px 12px;
  border: 1px solid #ebe4dc;
  border-radius: 14px;
  background: #fffefa;
}

.report-number {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--premium-navy);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 900;
}

.report-row strong,
.report-row small {
  display: block;
}

.report-row strong {
  color: var(--premium-navy);
  font-size: 0.79rem;
  line-height: 1.2;
}

.report-row small {
  margin-top: 2px;
  color: #777f92;
  font-size: 0.64rem;
  line-height: 1.2;
}

.report-state {
  color: var(--premium-coral-dark);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.report-outcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 11px;
  padding: 14px 15px;
  border-radius: 16px;
  background: var(--premium-navy);
  color: #ffffff;
}

.report-outcome span,
.report-outcome strong {
  display: block;
}

.report-outcome div > span {
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.report-outcome strong {
  margin-top: 3px;
  font-size: 0.79rem;
}

.report-outcome b {
  color: var(--premium-coral);
}

.report-outcome .report-mark {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--premium-coral);
  color: var(--premium-navy);
  font-size: 1rem;
  font-weight: 950;
}

.floating-note {
  position: absolute;
  z-index: 3;
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(6, 19, 58, 0.82);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.floating-note span,
.floating-note strong {
  display: block;
}

.floating-note span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.floating-note strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 0.75rem;
}

.floating-note-top {
  top: 59px;
  left: -34px;
}

.floating-note-bottom {
  right: -42px;
  bottom: 72px;
}

.hero-scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 54px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-cue i {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, var(--premium-coral), transparent);
}

.principle-ribbon {
  overflow: hidden;
  border-top: 1px solid rgba(2, 11, 41, 0.08);
  border-bottom: 1px solid rgba(2, 11, 41, 0.08);
  background: var(--premium-coral);
  color: var(--premium-navy);
}

.principle-track {
  display: flex;
  width: min(100% - 34px, 1420px);
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3.2vw, 44px);
  margin-inline: auto;
  white-space: nowrap;
}

.principle-track span {
  font-size: 0.69rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.principle-track i {
  font-style: normal;
  opacity: 0.52;
}

.premium-section {
  padding: 118px 0;
}

.difference-section {
  background: var(--premium-ivory);
}

.editorial-heading,
.section-title-row {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 70px;
  margin-bottom: 55px;
}

.editorial-heading h2,
.section-title-row h2,
.transparency-grid h2 {
  margin: 0;
  color: var(--premium-navy);
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.062em;
}

.editorial-heading > p,
.section-side-copy > p {
  max-width: 470px;
  margin: 0;
  color: var(--premium-muted);
  font-size: 1rem;
  line-height: 1.76;
}

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

.difference-card {
  position: relative;
  display: flex;
  min-height: 375px;
  flex-direction: column;
  grid-column: span 5;
  padding: 31px;
  overflow: hidden;
  border: 1px solid #ded7cf;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 17px 50px rgba(2, 11, 41, 0.045);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.difference-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 91, 71, 0.52);
  box-shadow: 0 26px 65px rgba(2, 11, 41, 0.1);
}

.difference-card-wide {
  grid-column: span 7;
  background: var(--premium-navy);
  color: #ffffff;
}

.difference-card-statement {
  min-height: 310px;
  justify-content: space-between;
  grid-column: span 7;
  background: var(--premium-coral);
  color: var(--premium-navy);
}

.card-index {
  color: #989eac;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.difference-card-wide .card-index {
  color: rgba(255, 255, 255, 0.39);
}

.difference-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 45px 0 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: var(--premium-coral);
  color: var(--premium-navy);
  box-shadow: 0 0 0 14px rgba(255, 91, 71, 0.06);
  font-size: 2rem;
  font-weight: 950;
}

.difference-card h3 {
  max-width: 600px;
  margin: auto 0 13px;
  color: var(--premium-navy);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.difference-card-wide h3 {
  color: #ffffff;
}

.difference-card p {
  max-width: 610px;
  margin: 0;
  color: var(--premium-muted);
  font-size: 0.92rem;
}

.difference-card-wide > p {
  color: rgba(255, 255, 255, 0.61);
}

.difference-card a {
  width: fit-content;
  margin-top: 24px;
  color: #ffffff;
  font-size: 0.79rem;
  font-weight: 850;
  text-decoration: none;
}

.difference-card a:hover {
  color: var(--premium-coral);
}

.cost-stack {
  display: flex;
  min-height: 112px;
  align-items: center;
  margin: 30px 0 26px;
}

.cost-stack span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid #d9d2ca;
  border-radius: 50%;
  background: #ffffff;
  color: var(--premium-navy);
  box-shadow: 0 8px 25px rgba(2, 11, 41, 0.08);
  font-weight: 950;
}

.cost-stack span + span {
  margin-left: -12px;
}

.cost-stack span:nth-child(2) {
  width: 46px;
  height: 46px;
  z-index: 2;
  background: var(--premium-coral);
}

.cost-stack span:last-child {
  width: 90px;
  height: 90px;
  background: var(--premium-navy);
  color: #ffffff;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.fit-visual {
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(35px, 1fr) auto;
  gap: 13px;
  margin: 49px 0 39px;
  color: var(--premium-navy);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.fit-visual i {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, var(--premium-coral), #d9d2ca);
}

.fit-visual i::before,
.fit-visual i::after {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.fit-visual i::before {
  left: 0;
  background: var(--premium-coral);
}

.fit-visual i::after {
  right: 0;
  border: 2px solid #a9afbc;
  background: #ffffff;
}

.difference-card-statement .statement-quote {
  max-width: 720px;
  color: var(--premium-navy);
  font-size: clamp(2.05rem, 4vw, 3.7rem);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.statement-quote strong {
  font-weight: 950;
}

.difference-card-statement .statement-signoff {
  color: rgba(2, 11, 41, 0.62);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.categories-premium {
  border-top: 1px solid #e4ddd4;
  background: #fffdf9;
}

.section-side-copy {
  padding-bottom: 7px;
}

.premium-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--premium-navy);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.premium-text-link::after {
  display: block;
  width: 0;
  height: 1px;
  background: var(--premium-coral);
  content: "";
  transition: width 180ms ease;
}

.premium-text-link:hover::after {
  width: 32px;
}

.premium-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.premium-category {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 25px;
  overflow: hidden;
  border: 1px solid #e1d9d0;
  border-radius: 24px;
  background: var(--premium-ivory);
  color: var(--premium-navy);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.premium-category::after {
  position: absolute;
  right: -65px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 35px solid rgba(2, 11, 41, 0.035);
  border-radius: 50%;
  content: "";
  transition: transform 300ms ease;
}

.premium-category:hover {
  z-index: 2;
  transform: translateY(-7px);
  border-color: rgba(255, 91, 71, 0.58);
  box-shadow: 0 26px 58px rgba(2, 11, 41, 0.11);
}

.premium-category:hover::after {
  transform: scale(1.12) rotate(15deg);
}

.category-tech,
.category-travel {
  background: var(--premium-navy);
  color: #ffffff;
}

.category-beauty {
  background: #ffe9e3;
}

.category-wellness {
  background: #eef1e7;
}

.category-digital {
  background: #edf0f8;
}

.category-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.category-top b {
  color: currentColor;
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  opacity: 0.55;
}

.category-top i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.75rem;
  font-style: normal;
  opacity: 0.48;
}

.category-glyph {
  position: relative;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  margin: 40px 0 30px;
  place-items: center;
  border: 1px solid rgba(2, 11, 41, 0.12);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--premium-navy);
  font-size: 1.5rem;
  box-shadow: 0 12px 26px rgba(2, 11, 41, 0.08);
}

.category-tech .category-glyph,
.category-travel .category-glyph {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.category-content {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: auto;
}

.category-content strong,
.category-content small {
  display: block;
}

.category-content strong {
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.category-content small {
  max-width: 315px;
  margin-top: 10px;
  color: currentColor;
  font-size: 0.76rem;
  line-height: 1.55;
  opacity: 0.6;
}

.standard-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  background: var(--premium-navy);
  color: #ffffff;
  isolation: isolate;
}

.standard-halo {
  position: absolute;
  z-index: -1;
  top: -420px;
  left: -420px;
  width: 950px;
  height: 950px;
  border: 120px solid rgba(255, 255, 255, 0.02);
  border-radius: 50%;
}

.standard-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(65px, 10vw, 135px);
}

.standard-intro {
  position: sticky;
  top: 132px;
}

.premium-section-label-light {
  color: #ff806c;
}

.standard-intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.3rem, 5.3vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.standard-intro > p:not(.premium-section-label) {
  max-width: 520px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.97rem;
  line-height: 1.75;
}

.premium-button-light {
  margin-top: 31px;
  background: #ffffff;
  color: var(--premium-navy);
}

.standard-list {
  display: grid;
}

.standard-item {
  display: grid;
  align-items: center;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.standard-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.standard-item > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--premium-coral);
  font-size: 0.68rem;
  font-weight: 900;
}

.standard-item h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.standard-item p {
  max-width: 520px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.82rem;
  line-height: 1.55;
}

.standard-item > i {
  color: rgba(255, 255, 255, 0.26);
  font-size: 0.59rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.manifesto-section {
  position: relative;
  padding: 145px 0;
  overflow: hidden;
  background: var(--premium-coral);
  color: var(--premium-navy);
  text-align: center;
}

.manifesto-section::before,
.manifesto-section::after {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(2, 11, 41, 0.09);
  border-radius: 50%;
  content: "";
}

.manifesto-section::before {
  top: -210px;
  left: -70px;
}

.manifesto-section::after {
  right: -80px;
  bottom: -220px;
}

.manifesto-inner {
  position: relative;
  z-index: 1;
}

.manifesto-inner img {
  width: 78px;
  height: 78px;
  margin: 0 auto 29px;
  border: 4px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 17px 38px rgba(2, 11, 41, 0.2);
}

.manifesto-inner .premium-section-label {
  color: rgba(2, 11, 41, 0.65);
}

.manifesto-inner h2 {
  margin: 0;
  color: var(--premium-navy);
  font-size: clamp(3rem, 6.3vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: -0.067em;
}

.manifesto-inner h2 span {
  color: #ffffff;
}

.manifesto-inner > p:last-child {
  max-width: 670px;
  margin: 28px auto 0;
  color: rgba(2, 11, 41, 0.68);
  font-size: 1.04rem;
}

.guide-premium-section {
  background: #fffdf9;
}

.premium-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(320px, 0.72fr);
  gap: 17px;
}

.featured-guide,
.compact-guide {
  border-radius: 28px;
  overflow: hidden;
}

.featured-guide {
  display: grid;
  min-height: 635px;
  grid-row: span 2;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
  background: var(--premium-navy);
  color: #ffffff;
}

.featured-guide-content {
  display: flex;
  flex-direction: column;
  padding: 43px;
}

.guide-meta {
  color: var(--premium-coral-dark);
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-guide .guide-meta {
  color: #ff806c;
}

.guide-meta b {
  color: rgba(255, 255, 255, 0.3);
}

.featured-guide h3 {
  max-width: 600px;
  margin: 64px 0 0;
  color: #ffffff;
  font-size: clamp(2.45rem, 4.2vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.featured-guide-content > p {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.91rem;
}

.featured-guide ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 31px;
  padding: 0;
  list-style: none;
}

.featured-guide li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.66rem;
  font-weight: 750;
}

.premium-button-dark {
  width: fit-content;
  margin-top: auto;
  background: var(--premium-coral);
  color: var(--premium-navy);
}

.featured-guide-art {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, #0b2053, #061233);
}

.featured-guide-art > span {
  position: absolute;
  top: 31px;
  right: 33px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 3.6rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.guide-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 245px;
  height: 245px;
  place-items: center;
  border: 42px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.guide-ring::before {
  position: absolute;
  width: 318px;
  height: 318px;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.guide-ring i {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
  background: var(--premium-coral);
  color: var(--premium-navy);
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 950;
  box-shadow: 0 0 0 14px rgba(255, 91, 71, 0.08);
}

.featured-guide-art small {
  position: absolute;
  right: 30px;
  bottom: 31px;
  color: rgba(255, 255, 255, 0.33);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.7;
  text-align: right;
}

.compact-guide {
  position: relative;
  display: flex;
  min-height: 309px;
  flex-direction: column;
  padding: 29px;
  border: 1px solid #ded7cf;
  background: var(--premium-ivory);
  color: var(--premium-navy);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.compact-guide:hover {
  transform: translateY(-5px);
  box-shadow: 0 23px 55px rgba(2, 11, 41, 0.1);
}

.compact-guide-coral {
  border-color: transparent;
  background: var(--premium-coral);
}

.compact-guide-coral .guide-meta {
  color: rgba(2, 11, 41, 0.62);
}

.guide-number {
  position: absolute;
  top: 23px;
  right: 27px;
  color: rgba(2, 11, 41, 0.15);
  font-size: 2.8rem;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.compact-guide h3 {
  max-width: 380px;
  margin: 54px 0 10px;
  color: var(--premium-navy);
  font-size: 1.72rem;
  line-height: 1.02;
  letter-spacing: -0.043em;
}

.compact-guide p {
  margin: 0 0 22px;
  color: var(--premium-muted);
  font-size: 0.77rem;
  line-height: 1.55;
}

.compact-guide-coral p {
  color: rgba(2, 11, 41, 0.64);
}

.compact-guide a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(2, 11, 41, 0.1);
  color: var(--premium-navy);
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
}

.transparency-section {
  border-top: 1px solid #ded7cf;
  background: var(--premium-ivory);
}

.transparency-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(65px, 10vw, 135px);
}

.transparency-lede {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--premium-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

.transparency-list {
  border-top: 1px solid #d9d2ca;
}

.transparency-list > div {
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #d9d2ca;
}

.transparency-list span {
  color: var(--premium-coral-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.transparency-list p {
  margin: 0;
  color: var(--premium-muted);
  font-size: 0.9rem;
}

.transparency-list strong {
  color: var(--premium-navy);
}

.final-cta {
  position: relative;
  padding: 115px 0;
  overflow: hidden;
  background: var(--premium-navy-soft);
  color: #ffffff;
  isolation: isolate;
}

.final-cta::after {
  position: absolute;
  z-index: -1;
  top: -390px;
  right: -190px;
  width: 850px;
  height: 850px;
  border: 125px solid rgba(255, 255, 255, 0.024);
  border-radius: 50%;
  content: "";
}

.final-cta-noise {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 80% 0, rgba(255, 91, 71, 0.18), transparent 40%);
}

.final-cta-inner {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 90px;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.2rem, 5.4vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.063em;
}

.final-socials {
  display: grid;
  gap: 10px;
}

.final-socials a {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(80px, 0.65fr) minmax(0, 1fr) auto;
  gap: 16px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.final-socials a:hover {
  transform: translateX(-4px);
  border-color: rgba(255, 91, 71, 0.65);
  background: rgba(255, 255, 255, 0.09);
}

.final-socials span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.final-socials strong {
  font-size: 0.81rem;
}

.final-socials i {
  color: var(--premium-coral);
  font-style: normal;
}

.premium-footer {
  padding-top: 85px;
  background: #01061a;
}

.premium-footer-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.premium-footer .footer-brand .brand-name {
  color: #ffffff;
}

.premium-footer .footer-brand .brand-tagline {
  color: rgba(255, 255, 255, 0.42);
}

.footer-mantra {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.6rem, 3.3vw, 3rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-align: right;
}

.footer-mantra span {
  color: var(--premium-coral);
}

.premium-footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
}

.premium-footer .footer-grid {
  gap: 48px;
}

.footer-disclosure p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.77rem;
  line-height: 1.6;
}

.premium-footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.premium-footer .footer-bottom a:hover {
  color: #ffffff;
}

.js-enhanced [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-enhanced [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  .premium-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.82fr);
    gap: 50px;
  }

  .premium-hero h1 {
    font-size: clamp(3.7rem, 6.5vw, 5.8rem);
  }

  .floating-note-top {
    left: -12px;
  }

  .floating-note-bottom {
    right: -12px;
  }

  .signal-orbit-one {
    width: 520px;
    height: 520px;
  }

  .premium-guide-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  }

  .featured-guide {
    grid-template-columns: 1fr;
  }

  .featured-guide-art {
    display: none;
  }
}

@media (max-width: 980px) {
  .home-premium .premium-header .site-nav {
    background: rgba(2, 11, 41, 0.98);
    border-color: rgba(255, 255, 255, 0.11);
  }

  .home-premium .premium-header .site-nav .nav-cta {
    margin-top: 6px;
  }

  .premium-hero {
    padding-top: 80px;
  }

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

  .premium-hero-copy {
    max-width: 770px;
  }

  .signal-stage {
    min-height: 610px;
  }

  .difference-card,
  .difference-card-wide,
  .difference-card-statement {
    grid-column: span 6;
  }

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

  .standard-grid,
  .transparency-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .standard-intro {
    position: static;
  }

  .standard-list {
    margin-top: 15px;
  }

  .premium-guide-grid {
    grid-template-columns: 1fr;
  }

  .featured-guide {
    min-height: 560px;
    grid-row: auto;
  }

  .compact-guide {
    min-height: 300px;
  }

  .final-socials {
    max-width: 620px;
  }

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

@media (max-width: 760px) {
  .home-premium .header-inner {
    min-height: 72px;
  }

  .home-premium .brand-tagline {
    display: none;
  }

  .premium-hero {
    min-height: auto;
    padding: 64px 0 42px;
  }

  .premium-eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    line-height: 1.45;
  }

  .premium-eyebrow::before {
    width: 22px;
  }

  .premium-hero h1 {
    font-size: clamp(3rem, 14.5vw, 4.6rem);
  }

  .premium-lede {
    margin-top: 24px;
    font-size: 1rem;
  }

  .premium-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .premium-button {
    width: 100%;
  }

  .hero-assurance {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .signal-stage {
    min-height: 550px;
    margin-top: 6px;
  }

  .signal-orbit-one {
    width: 470px;
    height: 470px;
  }

  .signal-orbit-two {
    width: 390px;
    height: 390px;
  }

  .decision-report {
    width: calc(100% - 8px);
    padding: 21px;
    border-radius: 24px;
    transform: none;
  }

  .decision-report:hover {
    transform: translateY(-3px);
  }

  .floating-note {
    display: none;
  }

  .report-question h2 {
    font-size: 1.45rem;
  }

  .report-row {
    grid-template-columns: 29px minmax(0, 1fr);
  }

  .report-state {
    display: none;
  }

  .hero-scroll-cue {
    display: none;
  }

  .principle-track {
    width: max-content;
    min-height: 52px;
    justify-content: flex-start;
    padding-inline: 18px;
    animation: principle-slide 26s linear infinite;
  }

  .premium-section,
  .standard-section {
    padding: 86px 0;
  }

  .editorial-heading,
  .section-title-row {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 38px;
  }

  .editorial-heading h2,
  .section-title-row h2,
  .transparency-grid h2,
  .standard-intro h2,
  .final-cta h2 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

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

  .difference-card,
  .difference-card-wide,
  .difference-card-statement {
    min-height: 350px;
    grid-column: auto;
    padding: 25px;
  }

  .difference-card-statement {
    min-height: 310px;
  }

  .premium-category-grid {
    grid-template-columns: 1fr;
  }

  .premium-category {
    min-height: 285px;
  }

  .standard-grid,
  .transparency-grid,
  .final-cta-inner {
    gap: 52px;
  }

  .standard-item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }

  .standard-item > span {
    width: 43px;
    height: 43px;
  }

  .standard-item > i {
    display: none;
  }

  .standard-item h3 {
    font-size: 1.35rem;
  }

  .manifesto-section {
    padding: 100px 0;
  }

  .manifesto-inner h2 {
    font-size: clamp(2.8rem, 13.8vw, 4.6rem);
  }

  .featured-guide {
    min-height: 610px;
  }

  .featured-guide-content {
    padding: 28px;
  }

  .featured-guide h3 {
    margin-top: 52px;
    font-size: clamp(2.4rem, 12vw, 3.75rem);
  }

  .final-cta {
    padding: 88px 0;
  }

  .final-socials a {
    grid-template-columns: 1fr auto;
  }

  .final-socials span {
    grid-column: 1 / -1;
  }

  .premium-footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-mantra {
    text-align: left;
  }

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

@keyframes principle-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-42%); }
}

@media (prefers-reduced-motion: reduce) {
  .principle-track {
    animation: none;
  }

  .js-enhanced [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Premium continuity for every supporting page. */
body:not(.home-premium) {
  background:
    radial-gradient(circle at 92% 26%, rgba(255, 91, 71, 0.045), transparent 24rem),
    linear-gradient(180deg, #fffdfb, #f9f4ee);
}

body:not(.home-premium) .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(2, 11, 41, 0.96);
  backdrop-filter: blur(20px);
}

body:not(.home-premium) .site-header .brand,
body:not(.home-premium) .site-header .brand-name {
  color: #ffffff;
}

body:not(.home-premium) .site-header .site-nav a {
  color: rgba(255, 255, 255, 0.67);
}

body:not(.home-premium) .site-header .site-nav a:hover,
body:not(.home-premium) .site-header .site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body:not(.home-premium) .site-header .site-nav .nav-cta {
  background: var(--coral-500);
  color: var(--navy-950);
}

body:not(.home-premium) .page-hero {
  position: relative;
  padding: 105px 0 88px;
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 8% 110%, rgba(31, 83, 151, 0.24), transparent 32%),
    linear-gradient(145deg, #020b29, #061943 62%, #020b25);
  color: #ffffff;
  isolation: isolate;
}

body:not(.home-premium) .page-hero::before {
  position: absolute;
  z-index: -1;
  top: -370px;
  right: -220px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 91, 71, 0.22), rgba(255, 91, 71, 0.03) 42%, transparent 68%);
  content: "";
}

body:not(.home-premium) .page-hero h1 {
  color: #ffffff;
  font-size: clamp(3.35rem, 6.4vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.064em;
}

body:not(.home-premium) .page-hero .lede {
  color: rgba(255, 255, 255, 0.63);
}

body:not(.home-premium) .page-hero .eyebrow {
  color: #ff7965;
}

body:not(.home-premium) .page-hero .breadcrumb,
body:not(.home-premium) .page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

body:not(.home-premium) .content-aside {
  border-color: #ddd5cc;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 91, 71, 0.09), transparent 34%),
    linear-gradient(145deg, #fbf5ee, #fffdf9);
  box-shadow: 0 1px 0 #fff inset, 0 18px 45px rgba(2, 11, 41, 0.07);
}

body:not(.home-premium) .section {
  background:
    radial-gradient(circle at 96% 7%, rgba(255, 91, 71, 0.035), transparent 22rem),
    linear-gradient(180deg, rgba(255, 253, 251, 0.82), rgba(249, 244, 238, 0.74));
}

body:not(.home-premium) .callout {
  border-left-color: var(--coral-500);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 91, 71, 0.08), transparent 38%),
    linear-gradient(135deg, #faf4ed, #fffdfb);
  box-shadow: 0 12px 30px rgba(2, 11, 41, 0.045);
}

body:not(.home-premium) .value-card,
body:not(.home-premium) .guide-card,
body:not(.home-premium) .contact-option {
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #fffaf5);
  box-shadow: 0 1px 0 #fff inset, 0 16px 42px rgba(2, 11, 41, 0.065);
}

body:not(.home-premium) .contact-option-email {
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 91, 71, 0.16), transparent 31%),
    linear-gradient(145deg, #fffaf5, #ffffff);
}

body:not(.home-premium) .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  background:
    radial-gradient(circle at 92% 0, rgba(255, 91, 71, 0.08), transparent 26rem),
    linear-gradient(155deg, #010619, #020d2b 58%, #01051a);
}

body:not(.home-premium) .value-card:hover,
body:not(.home-premium) .guide-card:hover {
  border-color: rgba(255, 91, 71, 0.48);
  box-shadow: 0 24px 58px rgba(2, 11, 41, 0.1);
}

@media (max-width: 980px) {
  body:not(.home-premium) .site-header .site-nav {
    border-color: rgba(255, 255, 255, 0.1);
    background: #020b29;
  }
}

@media (max-width: 680px) {
  body:not(.home-premium) .page-hero {
    padding: 74px 0 62px;
  }

  body:not(.home-premium) .page-hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.6rem);
  }
}
