/* Sector site — mirrors the app's liquid-glass design exactly:
   the GlassScaffold gradient + colour blobs, frosted GlassCards,
   and the sky AccentGlassPanel. Poppins headings, Nunito Sans body. */
:root {
  --ink: #1F2C47;
  --sky: #3D6FA5;
  --mist: #EDF3FA;
  --amber: #F8EEDD;
  --paper: #FBFCFF;
  --body: rgba(31, 44, 71, 0.75);
  --line: rgba(255, 255, 255, 0.5);
  --green: #3E7D4F;
  --danger: #B4533A;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito Sans", -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, var(--paper) 0%, var(--mist) 55%, var(--amber) 100%);
  min-height: 100vh;
  line-height: 1.62;
  position: relative;
}
/* The app's soft colour blobs behind everything. */
body::before, body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
body::before {
  top: -80px; right: -60px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(61,111,165,0.35), rgba(61,111,165,0));
}
body::after {
  bottom: -60px; left: -100px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(31,44,71,0.18), rgba(31,44,71,0));
}
.wrap { max-width: 720px; margin: 0 auto; padding: 32px 20px 64px;
  position: relative; z-index: 1; }
h1, h2, h3 { font-family: "Poppins", -apple-system, sans-serif; font-weight: 600; }
a { color: var(--sky); text-decoration: none; }
a:hover { text-decoration: underline; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { width: 44px; height: 44px; border-radius: 10px; flex: none;
  box-shadow: 0 4px 14px rgba(31,44,71,0.18); }
.brand .name { font-family: "Poppins", sans-serif; font-weight: 600;
  font-size: 22px; color: var(--ink); letter-spacing: -0.2px; }

/* The app's AccentGlassPanel: sky gradient, white text, soft glow. */
.accent-panel {
  margin-top: 30px;
  border-radius: 24px;
  padding: 26px 24px;
  color: #fff;
  background: linear-gradient(135deg, rgba(61,111,165,0.95), rgba(107,147,190,0.85));
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 24px rgba(61,111,165,0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.accent-panel h1 { margin: 0 0 10px; font-size: 34px; line-height: 1.15;
  letter-spacing: -0.5px; color: #fff; }
.accent-panel p { margin: 0; font-size: 16.5px; color: rgba(255,255,255,0.86); }
.accent-panel .kicker { display: block; font-size: 12px; letter-spacing: 1.4px;
  font-weight: 700; color: rgba(255,255,255,0.8); margin-bottom: 8px;
  text-transform: uppercase; font-family: "Nunito Sans", sans-serif; }

/* The app's GlassCard: frosted translucent white, hairline border. */
.glass {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.lead { font-size: 16.5px; color: var(--body); }
.section { margin: 40px 0 12px; font-size: 23px; letter-spacing: -0.3px; }

.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cards .glass h3 { margin: 0 0 6px; font-size: 16px; }
.cards .glass p { margin: 0; font-size: 14px; color: var(--body); }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

.price-line { font-size: 18.5px; margin: 0 0 6px; }
.price-line strong { font-family: "Poppins", sans-serif; }
.note { font-size: 12.5px; color: var(--body); margin-top: 10px; }

table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { text-align: left; padding: 9px 9px;
  border-bottom: 1px solid rgba(31,44,71,0.08); vertical-align: top; }
tr:last-child th, tr:last-child td { border-bottom: none; }
th { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 13px; }
td.sector, th.sector { background: rgba(61,111,165,0.10); font-weight: 700; }
.table-scroll { overflow-x: auto; }
.yes { color: var(--green); font-weight: 700; }
.no { color: var(--danger); }

.btn { display: inline-block; background: var(--sky); color: #fff;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 15.5px;
  padding: 13px 26px; border-radius: 16px; margin-top: 20px;
  box-shadow: 0 6px 18px rgba(61,111,165,0.3); }
.btn:hover { text-decoration: none; opacity: 0.92; }

.quote {
  margin: 18px 0 0;
  border-radius: 20px;
  padding: 18px 20px;
  background: rgba(248,238,221,0.75);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-size: 15px;
  color: var(--ink);
}
.foot { margin-top: 52px; font-size: 13px; color: var(--body); }
