:root {
  --teal: #009695;
  --teal-d: #007574;
  --teal-l: #33B5B4;
  --teal-ll:#5ECECE;
  --teal-bg:#EAF6F6;
  --teal-bg2:#F0FAFA;
  --ink: #0A1414;
  --mid: #3A5252;
  --muted: #6B8888;
  --line: rgba(0,0,0,0.08);
  --lineb: rgba(0,0,0,0.05);
  --white: #ffffff;
  --off: #F5FAFA;
  --hero-bg:#F2FAFA;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  transition: background 0.3s, border-bottom 0.3s, box-shadow 0.3s;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.logo-wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.logo-wrap .logo {
  position: relative;
  display: flex;
  align-items: center;
  width: 140px;
  height: 46px;
}
.logo-wrap .logo__mark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
}
.logo-wrap .logo__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 38.4px;
  margin: 0;
  padding: 0;
}
.nav-links > li {
  position: relative;
  padding-top: 2px;
}
.nav-links .link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: var(--mid);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links .link:hover {
  color: var(--teal);
}

.nav-chevron {
  flex-shrink: 0;
  width: 12px;
  height: 17px;
  color: currentColor;
  transition: transform 0.2s;
}

.nav-item--has-sub::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: max(100%, 146px);
  height: 16px;
}
.nav-item--has-sub:hover > .link, .nav-item--has-sub:focus-within > .link {
  color: var(--teal);
}
.nav-item--has-sub:hover .nav-chevron, .nav-item--has-sub:focus-within .nav-chevron {
  transform: rotate(180deg);
}
.nav-item--has-sub:hover .depth2, .nav-item--has-sub:focus-within .depth2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
@media (max-width: 991.98px) {
  .nav-item--has-sub:hover .depth2, .nav-item--has-sub:focus-within .depth2 {
    transform: none;
  }
}

.depth2 {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 146px;
  padding: 16px 20px;
  margin: 0;
  list-style: none;
  background: var(--teal);
  border-radius: 20px;
  box-shadow: 0 4px 9px rgba(0, 150, 149, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.nav-item--has-sub:not(:hover):not(:focus-within) .depth2 {
  transition-delay: 0.12s, 0.12s, 0s;
}
.depth2 .depth2-item {
  width: 100%;
}
.depth2 .link {
  justify-content: center;
  width: 100%;
  color: #fff;
  text-align: center;
}
.depth2 .link:hover {
  color: #fff;
  opacity: 0.85;
}

.ncta {
  display: inline-flex;
  align-items: center;
  background: var(--teal) !important;
  color: #fff !important;
  padding: 6px 18px;
  border-radius: 26.24px;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  box-shadow: 0 2px 6px rgba(0, 150, 149, 0.22);
  transition: background 0.2s, box-shadow 0.2s !important;
}
.ncta:hover {
  background: var(--teal-d) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 150, 149, 0.32) !important;
}

nav > .nav-mobile__btn {
  display: none;
}

@media (max-width: 991.98px) {
  nav {
    padding: 16px 28.8px;
  }
  nav > .nav-links {
    display: none;
  }
  nav > .nav-mobile__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
  }
  nav > .nav-mobile__btn svg path {
    stroke: var(--mid);
  }
}
body.nav-mobile-open {
  overflow: hidden;
}

.nav-mobile {
  z-index: 700;
  background-color: #fff;
  max-width: 600px;
  width: 100%;
  height: 100%;
  transition: 500ms all;
  text-align: left;
  position: fixed;
  top: 0;
  right: -100%;
  display: block;
}
.nav-mobile.active {
  right: 0;
}
.nav-mobile__btn {
  display: none;
}
.nav-mobile__bg {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 650;
}
.nav-mobile__head {
  height: 60px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.nav-mobile__head .logo-wrap .logo {
  width: 116px;
  height: 38px;
}
.nav-mobile__head .logo-wrap .logo__mark {
  left: 2px;
  width: 28px;
  height: 28px;
}
.nav-mobile__head .logo-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
}
.nav-mobile__btn--close {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mid);
  font-size: 1.25rem;
  cursor: pointer;
}
.nav-mobile__body {
  padding-bottom: 50px;
  position: relative;
  overflow-y: auto;
  height: calc(100vh - 60px);
}
.nav-mobile .nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
}
.nav-mobile .nav-links > li {
  padding-top: 0;
}
.nav-mobile .nav-links > li::after {
  display: none;
}
.nav-mobile .nav-links > li > .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  white-space: normal;
}
.nav-mobile .nav-links > li > .link:hover {
  color: var(--teal);
}
.nav-mobile .nav-links > li > .link.active {
  color: var(--teal);
}
.nav-mobile .nav-links .ncta {
  justify-content: center;
  margin: 1rem 1.25rem 0;
  width: calc(100% - 2.5rem);
}
@media (max-width: 991.98px) {
  .nav-mobile .nav-links .ncta {
    margin: 1rem 0 0;
  }
}
.nav-mobile .nav-item--has-sub > .link .nav-chevron {
  transition: transform 0.2s;
}
.nav-mobile .nav-item--has-sub.is-open > .link .nav-chevron {
  transform: rotate(180deg);
}
.nav-mobile .depth2 {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  min-width: 0;
  padding: 0;
  margin: 0;
  background: var(--teal-bg);
  border-radius: 0;
  box-shadow: none;
  display: none;
  gap: 0;
}
.nav-mobile .depth2 .link {
  justify-content: flex-start;
  padding: 0.85rem 1.25rem 0.85rem 2rem;
  font-size: 0.92rem;
  color: var(--mid);
  border-bottom: 1px solid rgba(0, 150, 149, 0.08);
  text-align: left;
}
.nav-mobile .depth2 .link:hover, .nav-mobile .depth2 .link.active {
  color: var(--teal-d);
  opacity: 1;
}
.nav-mobile .depth-1 > .link {
  text-align: left;
  color: #000;
  border-bottom: 1px solid #ddd;
  display: block;
  padding: 1rem 1rem;
  font-size: 1.2rem;
  position: relative;
}
.nav-mobile .depth-1 > .link.active {
  color: #fff;
}
.nav-mobile .depth-2 > .link {
  display: block;
  padding: 0.7rem 1rem;
  padding-left: 1.6rem;
  background-color: rgb(244.8, 244.8, 244.8);
  color: #555;
  font-size: 1rem;
}
.nav-mobile .depth-2:first-child > .link {
  padding-top: 1rem;
}
.nav-mobile .depth-2:last-child > .link {
  padding-bottom: 1rem;
}
.nav-mobile .depth-3 > .link {
  display: block;
  padding: 0.8rem 1rem;
  padding-left: 2.4rem;
  background-color: rgb(234.6, 234.6, 234.6);
  color: #555;
  font-size: 0.8rem;
}
.nav-mobile .depth-1 > .link,
.nav-mobile .depth-2 > .link {
  display: block;
  position: relative;
}
.nav-mobile .depth-1._down > .link.active:before,
.nav-mobile .depth-2._down > .link.active:before {
  content: "\e944";
}
.nav-mobile .depth-1._down > .link:before,
.nav-mobile .depth-2._down > .link:before {
  position: absolute;
  top: 50%;
  font-size: 1rem;
  margin-top: -0.5rem;
  right: 1rem;
}
.nav-mobile .nav-list--depth2,
.nav-mobile .nav-list--depth3 {
  display: none;
}

.diode-footer {
  background: #0a1414;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 33px 0 32px;
  z-index: 1;
  position: relative;
}

.diode-footer .wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.diode-footer .wrap .frow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.diode-footer .wrap .f-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.diode-footer .wrap .flinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.diode-footer .wrap .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.diode-footer .wrap .flink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.diode-footer .wrap .design {
  font-size: 14px;
  font-weight: 600;
  color: #FF7A8A;
}
.diode-footer .wrap .flink:hover {
  color: rgba(255, 255, 255, 0.55);
}
.diode-footer .wrap .fsep {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.12);
  -webkit-user-select: none;
          user-select: none;
}
.diode-footer .wrap .fsocial {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.diode-footer .wrap .fsoc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.diode-footer .wrap .fsoc:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}
.diode-footer .wrap .fcopy {
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 768px) {
  .diode-footer .wrap {
    padding: 0 1.3rem;
  }
  .frow {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .flinks {
    order: 3;
  }
  .fsocial {
    order: 2;
  }
}
.main-body.diode-home {
  padding-top: 0;
}

.main-body.diode-home .main {
  min-height: auto;
  background: #f0f8f8;
  color: #1a2b2b;
}

.sp {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--teal);
  z-index: 700;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.07s linear;
}

#circuit-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 9rem 3rem 5rem;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.content-col {
  min-width: 0;
}

.side-nav {
  position: sticky;
  top: 7rem;
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
  scrollbar-width: none;
}
.side-nav::-webkit-scrollbar {
  display: none;
}

.side-nav-label {
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 150, 149, 0.5);
  margin-bottom: 1rem;
  padding-left: 0.8rem;
}

.side-nav ul {
  list-style: none;
}

.side-nav li + li {
  margin-top: 0.15rem;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.77rem;
  font-weight: 500;
  color: #6a9090;
  padding: 0.38rem 0.8rem;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all 0.18s;
  line-height: 1.3;
}
.side-nav a:hover {
  color: #009695;
  background: rgba(0, 150, 149, 0.06);
  border-left-color: rgba(0, 150, 149, 0.35);
}
.side-nav a.active {
  color: #009695;
  background: rgba(0, 150, 149, 0.08);
  border-left-color: #009695;
  font-weight: 600;
}

.nav-section-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 120, 120, 0.38);
  padding: 0.6rem 0.8rem 0.25rem;
  margin-top: 0.4rem;
  display: list-item !important;
}

.side-divider {
  border: none;
  border-top: 1px solid rgba(0, 150, 149, 0.1);
  margin: 0.6rem 0;
}

.eyebrow {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #009695;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(0, 150, 149, 0.3);
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #009695;
  animation: terms-pulse 2.4s ease-in-out infinite;
}

@keyframes terms-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(0.6);
  }
}
.hero-text-glass {
  padding: 2.8rem 3rem;
  margin-bottom: 2.5rem;
  background: rgba(244, 252, 252, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 150, 149, 0.16);
  border-radius: 24px;
  box-shadow: 0 4px 48px rgba(0, 150, 149, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

h1.headline {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #1a2b2b;
  margin-bottom: 1.2rem;
}
h1.headline .teal {
  color: #009695;
}

.sub {
  font-size: 0.92rem;
  color: #5a7878;
  line-height: 1.88;
  margin-bottom: 1.6rem;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 150, 149, 0.65);
  background: rgba(0, 150, 149, 0.08);
  border: 1px solid rgba(0, 150, 149, 0.2);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
}
.meta-tag svg {
  width: 11px;
  height: 11px;
}

.quick-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.qn-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.1rem;
  background: rgba(250, 254, 254, 0.9);
  border: 1px solid rgba(0, 150, 149, 0.13);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
}
.qn-card:hover {
  background: rgba(0, 150, 149, 0.06);
  border-color: rgba(0, 150, 149, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 150, 149, 0.08);
}

.qn-card-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
}
.qn-card-icon svg {
  width: 14px;
  height: 14px;
}
.qn-card-icon.t1, .qn-card-icon.t3 {
  background: rgba(0, 150, 149, 0.1);
}
.qn-card-icon.t1 svg, .qn-card-icon.t3 svg {
  color: #009695;
}
.qn-card-icon.t2 {
  background: rgba(255, 122, 138, 0.1);
}
.qn-card-icon.t2 svg {
  color: #ff7a8a;
}
.qn-card-icon.t4 {
  background: rgba(94, 206, 206, 0.12);
}
.qn-card-icon.t4 svg {
  color: #33b5b4;
}

.qn-card-num {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 120, 120, 0.4);
}

.qn-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a2b2b;
  line-height: 1.2;
}

.notice-box {
  margin: 0 0 2.4rem;
  border: 1px solid rgba(255, 122, 138, 0.22);
  background: rgba(255, 122, 138, 0.05);
  border-radius: 14px;
  padding: 1.4rem 1.8rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.notice-box.teal-notice {
  border-color: rgba(0, 150, 149, 0.2);
  background: rgba(0, 150, 149, 0.05);
}

.notice-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 122, 138, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice-icon svg {
  width: 17px;
  height: 17px;
  color: #ff7a8a;
}
.notice-icon.teal-icon {
  background: rgba(0, 150, 149, 0.1);
}
.notice-icon.teal-icon svg {
  color: #009695;
}

.notice-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #cc5566;
  margin-bottom: 0.28rem;
}
.notice-title.teal-title {
  color: #007574;
}

.notice-text {
  font-size: 0.82rem;
  color: #4a5858;
  line-height: 1.72;
}
.notice-text a {
  color: #009695;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-chapter {
  margin-bottom: 3rem;
  scroll-margin-top: 7rem;
}

.chapter-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.9rem;
  border-bottom: 2px solid rgba(0, 150, 149, 0.12);
}

.chapter-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex-shrink: 0;
}
.chapter-badge svg {
  width: 17px;
  height: 17px;
}
.chapter-badge.teal {
  background: rgba(0, 150, 149, 0.12);
}
.chapter-badge.teal svg {
  color: #009695;
}
.chapter-badge.coral {
  background: rgba(255, 122, 138, 0.12);
}
.chapter-badge.coral svg {
  color: #ff7a8a;
}
.chapter-badge.cyan {
  background: rgba(94, 206, 206, 0.12);
}
.chapter-badge.cyan svg {
  color: #33b5b4;
}

.chapter-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #1a2b2b;
}

.chapter-sub {
  font-size: 0.78rem;
  color: #8aacac;
  margin-left: auto;
  font-weight: 500;
  white-space: nowrap;
}

.disc-section {
  margin-bottom: 1rem;
  background: rgba(250, 254, 254, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 150, 149, 0.11);
  border-left: 3px solid #009695;
  border-radius: 0 14px 14px 0;
  overflow: hidden;
}
.disc-section.coral-accent {
  border-left-color: #ff7a8a;
}
.disc-section.coral-accent .sec-num {
  color: #ff7a8a;
}
.disc-section.muted-accent {
  border-left-color: rgba(0, 150, 149, 0.28);
}
.disc-section.muted-accent .sec-num {
  color: rgba(0, 100, 100, 0.4);
}
.disc-section.cyan-accent {
  border-left-color: #5ecece;
}
.disc-section.cyan-accent .sec-num {
  color: #33b5b4;
}
.disc-section.open .chevron {
  transform: rotate(180deg);
}
.disc-section.open .disc-body {
  display: block;
}

.disc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
}
.disc-trigger:hover .sec-title {
  color: #009695;
}

.sec-num {
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #009695;
  flex-shrink: 0;
  width: 2.4rem;
}

.sec-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2b2b;
  letter-spacing: -0.015em;
  flex: 1;
  line-height: 1.3;
}

.chevron {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  color: rgba(154, 186, 186, 0.6666666667);
  transition: transform 0.22s;
}

.disc-body {
  display: none;
  padding: 0 1.5rem 1.3rem 4.2rem;
  font-size: 0.86rem;
  line-height: 1.84;
  color: #4a6868;
}
.disc-body p + p {
  margin-top: 0.75rem;
}
.disc-body strong {
  color: #2a4848;
  font-weight: 600;
}
.disc-body a {
  color: #009695;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.disc-body ul {
  margin: 0.5rem 0 0.5rem 1.1rem;
}
.disc-body li {
  margin-bottom: 0.35rem;
}
.disc-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.7rem 0;
  font-size: 0.82rem;
}
.disc-body th {
  text-align: left;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 120, 120, 0.5);
  padding: 0.45rem 0.75rem;
  border-bottom: 1px solid rgba(0, 150, 149, 0.14);
}
.disc-body td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid rgba(0, 150, 149, 0.07);
  color: #4a6868;
  vertical-align: top;
}
.disc-body td:first-child {
  font-weight: 600;
  color: #2a4848;
}
.disc-body tr:last-child td {
  border-bottom: none;
}

.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 0.7rem 0;
}

.right-card {
  background: rgba(0, 150, 149, 0.05);
  border: 1px solid rgba(0, 150, 149, 0.11);
  border-radius: 9px;
  padding: 0.8rem 0.9rem;
}

.right-card-title {
  font-size: 0.77rem;
  font-weight: 700;
  color: #009695;
  margin-bottom: 0.25rem;
}

.right-card-body {
  font-size: 0.79rem;
  color: #5a7878;
  line-height: 1.62;
}

.cookie-type {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 150, 149, 0.07);
}
.cookie-type:last-child {
  border-bottom: none;
}

.cookie-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.3rem;
  flex-shrink: 0;
}
.cookie-dot.essential {
  background: #009695;
}
.cookie-dot.analytics {
  background: #5ecece;
}
.cookie-dot.preference {
  background: rgba(0, 150, 149, 0.4);
}
.cookie-dot.marketing {
  background: #ff7a8a;
}

.cookie-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2a4848;
  margin-bottom: 0.18rem;
}

.cookie-desc {
  font-size: 0.81rem;
  color: #5a7878;
  line-height: 1.65;
}

.cookie-toggle {
  margin-left: auto;
  flex-shrink: 0;
}

.toggle-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 20px;
}
.toggle-pill.required {
  background: rgba(0, 150, 149, 0.1);
  color: #007574;
}
.toggle-pill.optional {
  background: rgba(255, 122, 138, 0.1);
  color: #cc5566;
}
.toggle-pill.none {
  background: rgba(0, 0, 0, 0.05);
  color: #8aacac;
}

.rule {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  margin: 0 0 2.5rem;
}

.closing-band {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #052828 0%, #073535 40%, #094040 100%);
  border-radius: 20px;
  margin-top: 3rem;
  overflow: hidden;
}
.closing-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(0, 150, 149, 0.18) 0%, transparent 70%), radial-gradient(ellipse 30% 50% at 15% 30%, rgba(94, 206, 206, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.closing-band-inner {
  position: relative;
  z-index: 1;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cb-eyebrow {
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(94, 206, 206, 0.5);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cb-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(94, 206, 206, 0.2);
}

.cb-headline {
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 0.7rem;
  max-width: 360px;
}
.cb-headline .coral {
  color: #ff7a8a;
}
.cb-headline .teal {
  color: #5ecece;
}

.cb-sub {
  font-size: 0.84rem;
  color: rgba(180, 220, 220, 0.58);
  line-height: 1.72;
  max-width: 340px;
}

.cb-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cb-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 150, 149, 0.17);
  border-radius: 9px;
  padding: 0.65rem 0.95rem;
  min-width: 200px;
}

.cb-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #009695;
  flex-shrink: 0;
}
.cb-dot.coral {
  background: #ff7a8a;
}

.cb-badge-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(200, 240, 240, 0.65);
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .page {
    grid-template-columns: 1fr;
    padding: 7.5rem 1.5rem 4rem;
  }
  .side-nav {
    display: none;
  }
  .quick-nav {
    grid-template-columns: 1fr 1fr;
  }
  .hero-text-glass {
    padding: 2rem 1.6rem;
  }
  .rights-grid {
    grid-template-columns: 1fr;
  }
  .closing-band-inner {
    padding: 2.2rem 1.6rem;
    flex-direction: column;
  }
  .cb-badges {
    width: 100%;
  }
}
.diode-footer {
  background: #0a1414;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 33px 0 32px;
  z-index: 1;
  position: relative;
}

.diode-footer .wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.diode-footer .wrap .frow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.diode-footer .wrap .f-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.diode-footer .wrap .flinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.diode-footer .wrap .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.diode-footer .wrap .flink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.diode-footer .wrap .design {
  font-size: 14px;
  font-weight: 600;
  color: #FF7A8A;
}
.diode-footer .wrap .flink:hover {
  color: rgba(255, 255, 255, 0.55);
}
.diode-footer .wrap .fsep {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.12);
  -webkit-user-select: none;
          user-select: none;
}
.diode-footer .wrap .fsocial {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.diode-footer .wrap .fsoc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.diode-footer .wrap .fsoc:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}
.diode-footer .wrap .fcopy {
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 768px) {
  .diode-footer .wrap {
    padding: 0 1.3rem;
  }
  .frow {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .flinks {
    order: 3;
  }
  .fsocial {
    order: 2;
  }
}
/*# sourceMappingURL=terms.css.map */