/*
 * HiverGo — Privacy Policy
 * style.css
 * Version: 26.05.11
 * Developed by Emie Chilis
 */

/* ════════════════════════════════════════════════════
   TOKENS — verbatim from xmls.js
   ════════════════════════════════════════════════════ */
:root {
  /* Surfaces */
  --space:           #141414;
  --border:          #282828;
  --modal:           #000000b3;
  --dimmer:          #0000004d;
  --darkness:        #121212;
  --nightly:         #00000060;
  --deep-space:      #0d0d0d;
  --darkfade:        #0000002a;
  --grayback:        #ffffff0a;
  --fademore:        #12121296;

  /* Text */
  --text-muted:      #a9a9a9;
  --yellow-text:     #ddc272;
  --chalk-green:     #b7ff63;
  --purple-blue:     #bad2ff;
  --accent-blue:     #4a6fa7;
  --accent-green:    #10b981;
  --special-green:   #9ae56b;
  --text-paragraph:  #94a3b8;

  /* Borders — transparent (spacing only) */
  --clear-border-3:  0.9375vw solid #0000;
  --clear-border-4:  1.25vw   solid #0000;
  --clear-border-5:  1.5625vw solid #0000;
  --border-1-light:  0.3125vw solid #2f2f2f;
  --gray-border-1:   0.3125vw solid var(--border);

  /* Gradients */
  --mask:             linear-gradient(180deg, #000 87%, #0000);
  --sunset:           linear-gradient(130deg, #ff8e00, #ff0000);
  --blue-aqua:        linear-gradient(45deg,  #0089ff, #00ffa1);
  --blue-honey:       linear-gradient(90deg,  #0089ff, #ff7500);
  --electric-blue:    linear-gradient(145deg, #3037ff, #56f7ff);
  --purple-hue:       linear-gradient(300deg, #a531ff1c, #0090ff0f);
  --purple-aqua:      linear-gradient(314deg, #43cfff5e, #c51db866);
  --tangerine-green:  linear-gradient(145deg, #13ff00, #ff7500);
  --divider-blue:     linear-gradient(90deg,  #0000, #3ca0ff87, #0000);
  --candy:            linear-gradient(#ff9800, rgb(229 111 2), rgb(203 51 2));
  --divider-orange:   linear-gradient(180deg, #0000, #ffb36491, #0000);
  --neptune:          linear-gradient(45deg,  #ff8a00, #843de1, #3aefc5);
  --candy-shadow:     #000 0 0 0.9375vw, #2ee7ff00 0 0 3.125vw, #000 0 0 0.625vw,
                      inset #ffffff85 0.3125vw 0.3125vw 3.125vw,
                      inset #970606c9 -0.3125vw -0.3125vw 1.5625vw;
  --icon-text-shadow: 0.15625vw -0.15625vw 0.46875vw black;
  --svg-shadow-1:     drop-shadow(rgba(0,0,0,0.35) 1px 1px 1px);

  /* Squircle — from xmls.js */
  --squircle-displacement: 25pt;
  --squircle: shape(
    from 0 var(--squircle-displacement),
    curve to var(--squircle-displacement) 0 with 0 0 / 0 0,
    hline to calc(100% - var(--squircle-displacement)),
    curve to 100% var(--squircle-displacement) with 100% 0 / 100% 0,
    vline to calc(100% - var(--squircle-displacement)),
    curve to calc(100% - var(--squircle-displacement)) 100% with 100% 100% / 100% 100%,
    hline to var(--squircle-displacement),
    curve to 0 calc(100% - var(--squircle-displacement)) with 0 100% / 0 100%,
    close
  );

  /* Accent palette (semantic shortcuts) */
  --honey:        #ff9800;
  --honey-light:  #ffb74d;
  --azure:        #0089ff;
  --azure-light:  #38b6ff;
  --purple:       #843de1;
  --purple-light: #b47eff;
  --pink:         #c51db8;
  --pink-light:   #e879f9;
  --teal:         #00bcd4;
  --orange:       #ff5722;
  --amber:        #fbbf24;
  --rose:         #fb7185;
  --danger:       #c62828;
  --lime:         #b7ff63;
}


/* ════════════════════════════════════════════════════
   RESET
   ════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Google Sans Text', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #f1f5f9;
  background: var(--darkness);
  overflow-x: hidden;
}

a {
  color: var(--azure-light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  margin-bottom: 1rem;
  color: var(--text-paragraph);
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.45rem;
  line-height: 1.7;
  color: var(--text-paragraph);
}

strong {
  color: #f1f5f9;
}

h3 {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.6rem 0 0.55rem;
  color: #f1f5f9;
}


/* ════════════════════════════════════════════════════
   SQUIRCLE UTILITY
   Applied to any element that is square-ish.
   Override --squircle-displacement locally to scale.
   ════════════════════════════════════════════════════ */
.squircle {
  border-radius: 28%; /* fallback for browsers without shape() */
  clip-path: var(--squircle);
}

/* Size variants — override displacement locally */
.sq-xs { --squircle-displacement: 8pt;  border-radius: 22%; }
.sq-sm { --squircle-displacement: 12pt; border-radius: 26%; }
.sq-md { --squircle-displacement: 18pt; border-radius: 28%; }
.sq-lg { --squircle-displacement: 25pt; border-radius: 30%; }


/* ════════════════════════════════════════════════════
   MATERIAL SYMBOLS — matches xmls.js class
   ════════════════════════════════════════════════════ */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-size: inherit;
  font-style: normal;
  font-weight: normal;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  user-select: none;
  flex-shrink: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: 'liga';
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
}

/* shorthand alias */
.ms { composes: material-symbols-outlined; }


/* ════════════════════════════════════════════════════
   PAGE BACKGROUND CANVAS
   ════════════════════════════════════════════════════ */
#page-hc {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}


/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 5rem 2rem 4.5rem;
  text-align: center;
  overflow: hidden;
  background: var(--deep-space);
  z-index: 1;
}

#hero-hc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
}

/* Ambient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.orb-1 {
  width: 420px;
  height: 420px;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 137, 255, 0.18) 0%, transparent 65%);
}

.orb-2 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.15) 0%, transparent 65%);
}

.orb-3 {
  width: 220px;
  height: 220px;
  bottom: -60px;
  left: -50px;
  background: radial-gradient(circle, rgba(132, 61, 225, 0.12) 0%, transparent 65%);
}

/* Logo lockup */
.logo-lockup {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  margin-bottom: 2rem;
}

.logo-mark-wrap {
  width: 60px;
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* squircle with small displacement for icon container */
  --squircle-displacement: 16pt;
  border-radius: 28%;
  clip-path: var(--squircle);
}

.logo-mark-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-word img {
  height: 60px;
  width: 200px;
  object-fit: cover;
  margin: 15px 0 0 -15px;
}

/* Eyebrow pill */
.eyebrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border-radius: 100px;
  background: rgba(255, 152, 0, 0.08);
  outline: 1px solid rgba(255, 152, 0, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--honey-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.eyebrow .material-symbols-outlined {
  font-size: 15px;
}

/* Hero title — gradient text */
.hero-title {
  position: relative;
  z-index: 2;
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  background: var(--blue-honey);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Meta chips row */
.chip-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 15px;
  border-radius: 100px;
  background: var(--grayback);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.chip .material-symbols-outlined {
  font-size: 15px;
}

.chip-honey { background: rgba(255, 152, 0, 0.1);   color: var(--honey-light); }
.chip-azure { background: rgba(0, 137, 255, 0.1);   color: var(--azure-light); }
.chip-purple{ background: rgba(132, 61, 225, 0.1);  color: var(--purple-light); }

/* Author block */
.author-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  padding: 1.1rem 2rem;
  background: var(--grayback);
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-radius: 100px;
}

.author-block .material-symbols-outlined {
  font-size: 17px;
  color: var(--honey);
  opacity: 0.8;
}

.author-name {
  color: var(--yellow-text);
  font-weight: 700;
}

.author-sep {
  color: var(--border);
}

.author-role {
  color: var(--text-muted);
}


/* ════════════════════════════════════════════════════
   DIVIDERS
   ════════════════════════════════════════════════════ */
.divider-blue {
  height: 1px;
  background: var(--divider-blue);
  border: none;
}

.divider-orange {
  height: 1px;
  background: var(--divider-orange);
  border: none;
}


/* ════════════════════════════════════════════════════
   LAYOUT
   ════════════════════════════════════════════════════ */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.75rem 5rem;
  position: relative;
  z-index: 1;
}


/* ════════════════════════════════════════════════════
   TABLE OF CONTENTS
   ════════════════════════════════════════════════════ */
.toc {
  background: var(--grayback);
  padding: 1.75rem;
  margin-bottom: 3rem;
  border-radius: 20px;
  /* squircle on the outer card */
  --squircle-displacement: 20pt;
  clip-path: var(--squircle);
}

.toc-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Google Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

.toc-heading .material-symbols-outlined {
  font-size: 18px;
  color: var(--honey);
}

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

.toc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  /* squircle for each card */
  --squircle-displacement: 12pt;
  clip-path: var(--squircle);
}

.toc-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
  text-decoration: none;
}

/* TOC icon — squircle shape */
.toc-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  /* squircle for icon box */
  --squircle-displacement: 9pt;
  border-radius: 24%;
  clip-path: var(--squircle);
}

.toc-num {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.3;
}

.toc-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.3;
  display: block;
}

/* Icon accent colors */
.ic-azure   { background: rgba(0,   137, 255, 0.14); color: var(--azure-light); }
.ic-purple  { background: rgba(132,  61, 225, 0.14); color: var(--purple-light); }
.ic-green   { background: rgba(16,  185, 129, 0.14); color: #34d399; }
.ic-honey   { background: rgba(255, 152,   0, 0.14); color: var(--honey-light); }
.ic-teal    { background: rgba(0,   188, 212, 0.14); color: #4dd0e1; }
.ic-orange  { background: rgba(255,  87,  34, 0.14); color: #ff7043; }
.ic-lime    { background: rgba(183, 255,  99, 0.14); color: var(--lime); }
.ic-pblue   { background: rgba(186, 210, 255, 0.12); color: var(--purple-blue); }
.ic-red     { background: rgba(198,  40,  40, 0.18); color: #ef5350; }
.ic-pink    { background: rgba(197,  29, 184, 0.14); color: var(--pink-light); }
.ic-amber   { background: rgba(251, 191,  36, 0.14); color: var(--amber); }
.ic-rose    { background: rgba(244,  63,  94, 0.14); color: var(--rose); }


/* ════════════════════════════════════════════════════
   SECTION CARDS
   ════════════════════════════════════════════════════ */
section {
  margin-bottom: 2rem;
  scroll-margin-top: 1.5rem;
}

.section-card {
  background: var(--grayback);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  /* squircle on section card */
  --squircle-displacement: 20pt;
  clip-path: var(--squircle);
  transition: box-shadow 0.2s;
}

.section-card:hover {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

/* CSAE section gets a red tint */
.section-card.danger-card {
  background: rgba(198, 40, 40, 0.06);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
}

/* Horizontal divider under header — using blue-honey gradient */
.section-header::after {
  display: none;
}

.section-divider {
  height: 1px;
  background: var(--divider-blue);
  border: none;
  margin: -0.4rem 0 1.4rem;
}

/* Section icon — squircle */
.section-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  /* squircle for icon */
  --squircle-displacement: 12pt;
  border-radius: 26%;
  clip-path: var(--squircle);
}

h2.section-title {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f1f5f9;
}


/* ════════════════════════════════════════════════════
   CALLOUT BOXES
   ════════════════════════════════════════════════════ */
.box {
  padding: 1.15rem 1.4rem;
  margin: 1.2rem 0;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  border-radius: 12px;
  /* squircle on callout boxes */
  --squircle-displacement: 10pt;
  clip-path: var(--squircle);
}

.box .material-symbols-outlined {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.box-body {
  flex: 1;
}

.box-body > strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.97rem;
}

.box-body p {
  margin: 0;
  font-size: 0.9rem;
}

.box-body ul {
  margin: 0.5rem 0 0;
}

.box-info {
  background: rgba(0, 137, 255, 0.08);
  color: #90caf9;
}

.box-info .material-symbols-outlined {
  color: var(--azure-light);
}

.box-good {
  background: rgba(16, 185, 129, 0.08);
  color: #6ee7b7;
}

.box-good .material-symbols-outlined {
  color: #34d399;
}


/* ════════════════════════════════════════════════════
   CSAE BOX
   ════════════════════════════════════════════════════ */
.csae-box {
  background: rgba(198, 40, 40, 0.1);
  padding: 1.75rem;
  margin: 1.35rem 0;
  border-radius: 16px;
  --squircle-displacement: 14pt;
  clip-path: var(--squircle);
}

.csae-box-hdr {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 1rem;
}

.csae-box-hdr .material-symbols-outlined {
  font-size: 28px;
  color: #ef5350;
  flex-shrink: 0;
  margin-top: 2px;
}

.csae-box-hdr h3 {
  margin: 0;
  color: #ff8a80;
  font-size: 1.04rem;
  line-height: 1.45;
}

.csae-box p,
.csae-box li {
  color: #ffcdd2;
}

.csae-box strong {
  color: #ff8a80;
}


/* ════════════════════════════════════════════════════
   PERMISSIONS GRID
   ════════════════════════════════════════════════════ */
.perm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 1.2rem 0;
}

.perm-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 14px;
  --squircle-displacement: 12pt;
  clip-path: var(--squircle);
  transition: background 0.15s;
}

.perm-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.perm-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  background: rgba(0, 137, 255, 0.12);
  color: var(--azure-light);
  --squircle-displacement: 9pt;
  border-radius: 22%;
  clip-path: var(--squircle);
}

.perm-label {
  font-family: 'Google Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: #f1f5f9;
}

.perm-reason {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}


/* ════════════════════════════════════════════════════
   RETENTION TABLE
   ════════════════════════════════════════════════════ */
.table-wrap {
  overflow-x: auto;
  margin: 1.2rem 0;
  border-radius: 14px;
  --squircle-displacement: 12pt;
  clip-path: var(--squircle);
}

.ret-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 560px;
}

.ret-table th {
  background: var(--space);
  color: var(--text-muted);
  text-align: left;
  padding: 12px 16px;
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.ret-table td {
  padding: 11px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: top;
  line-height: 1.6;
  color: var(--text-paragraph);
}

.ret-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.ret-table td strong {
  color: #f1f5f9;
}


/* ════════════════════════════════════════════════════
   STEPS LIST
   ════════════════════════════════════════════════════ */
.steps {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
}

.steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-honey);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}


/* ════════════════════════════════════════════════════
   AGE BADGES
   ════════════════════════════════════════════════════ */
.age-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 1rem 0;
}

.age-badge {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 17px;
  border-radius: 12px;
  font-size: 0.9rem;
  --squircle-displacement: 10pt;
  clip-path: var(--squircle);
}

.age-badge .material-symbols-outlined {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.age-badge strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.age-badge span {
  font-size: 0.85rem;
  opacity: 0.8;
}

.age-green {
  background: rgba(16, 185, 129, 0.09);
  color: #6ee7b7;
}

.age-blue {
  background: rgba(0, 137, 255, 0.08);
  color: #90caf9;
}

.age-red {
  background: rgba(198, 40, 40, 0.09);
  color: #ff8a80;
}


/* ════════════════════════════════════════════════════
   RIGHTS GRID
   ════════════════════════════════════════════════════ */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin: 1rem 0;
}

.right-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 17px 13px;
  text-align: center;
  border-radius: 14px;
  --squircle-displacement: 12pt;
  clip-path: var(--squircle);
  transition: background 0.15s;
}

.right-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.ri-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 22px;
  border-radius: 50%;
}

.ri-title {
  font-family: 'Google Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: #f1f5f9;
}

.ri-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}


/* ════════════════════════════════════════════════════
   CONTACT GRID
   ════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin: 1rem 0;
}

.contact-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 16px;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: default;
  border-radius: 14px;
  --squircle-displacement: 12pt;
  clip-path: var(--squircle);
  transition: background 0.15s;
}

a.contact-item {
  cursor: pointer;
}

.contact-item:hover {
  background: rgba(0, 137, 255, 0.08);
}

.ci-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  --squircle-displacement: 9pt;
  border-radius: 22%;
  clip-path: var(--squircle);
}

.ci-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}

.ci-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--azure-light);
  line-height: 1.3;
}


/* ════════════════════════════════════════════════════
   PARTNER CARDS
   ════════════════════════════════════════════════════ */
.partner-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px 17px;
  margin-bottom: 11px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: 14px;
  --squircle-displacement: 12pt;
  clip-path: var(--squircle);
  transition: background 0.15s;
}

.partner-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.pc-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  background: rgba(0, 137, 255, 0.14);
  color: var(--azure-light);
  --squircle-displacement: 9pt;
  border-radius: 22%;
  clip-path: var(--squircle);
}

.pc-name {
  font-family: 'Google Sans', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  margin-bottom: 4px;
  color: #f1f5f9;
}

.pc-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
footer {
  background: var(--deep-space);
  color: var(--text-muted);
  text-align: center;
  padding: 4rem 2rem 3rem;
  font-size: 0.875rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#footer-hc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

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

/* CSAE pill */
.footer-csae-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border-radius: 100px;
  background: rgba(198, 40, 40, 0.1);
  color: #ef9a9a;
  font-size: 0.78rem;
  margin-bottom: 2rem;
}

.footer-csae-pill .material-symbols-outlined {
  font-size: 15px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo .material-symbols-outlined {
  font-size: 26px;
  color: var(--honey);
  opacity: 0.5;
}

.footer-logo strong {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.2rem;
  color: #f1f5f9;
}

footer a {
  color: var(--azure-light);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin: 0.7rem 0 1.1rem;
}

.footer-gradient-line {
  height: 1px;
  background: var(--divider-blue);
  border: none;
  margin: 1.75rem auto 1rem;
  max-width: 420px;
}

.footer-bottom {
  font-size: 0.79rem;
  opacity: 0.38;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .toc-grid { grid-template-columns: 1fr 1fr; }
  .perm-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .rights-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.1rem; }
  h2.section-title { font-size: 1.15rem; }
  .container { padding: 2rem 1rem 3rem; }
  .section-card { padding: 1.5rem; }
  .author-block { border-radius: 20px; padding: 1rem 1.25rem; }
}

@media (max-width: 480px) {
  .toc-grid { grid-template-columns: 1fr; }
  .rights-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.85rem; }
}
