:root {
  --black: #030303;
  --black-soft: #0a0a0a;
  --panel: #0d0d0d;
  --white: #f6f3ec;
  --muted: #c7c2b8;
  --gold: #d6a319;
  --gold-bright: #f2c548;
  --silver: #d9d9d9;
  --bronze: #b36c2e;
  --line: rgba(214, 163, 25, 0.68);
}

* { box-sizing: border-box; }

html { color-scheme: dark; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(214, 163, 25, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(214, 163, 25, 0.05), transparent 28%),
    var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; }

.site-header {
  min-height: 146px;
  display: grid;
  grid-template-columns: minmax(340px, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 12px 38px;
  border-bottom: 2px solid var(--gold);
  background: rgba(3, 3, 3, 0.96);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.brand img {
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.brand-name strong {
  display: block;
  color: var(--white);
  font: 700 clamp(2rem, 3.2vw, 3.9rem)/0.92 Georgia, serif;
  letter-spacing: 0.12em;
}

.brand-name span {
  display: block;
  margin-top: 8px;
  color: var(--gold-bright);
  font: 600 1rem/1.2 Georgia, serif;
  letter-spacing: 0.28em;
}

.brand-name small {
  display: block;
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--gold);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  grid-column: 1 / -1;
  grid-row: 2;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  white-space: nowrap;
}

.header-cta {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 2;
}

.main-nav a {
  padding: 12px 0;
  color: var(--white);
  text-decoration: none;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--gold-bright);
}

.main-nav a.active { border-bottom: 3px solid var(--gold-bright); }

.outline-button,
.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  border: 2px solid var(--gold);
  color: var(--gold-bright);
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.gold-button {
  width: 100%;
  color: #090704;
  background: linear-gradient(100deg, #b97d12, #f6ce61, #c98d18);
}

.outline-button:hover,
.outline-button:focus-visible,
.gold-button:hover,
.gold-button:focus-visible { filter: brightness(1.12); }

.page-shell { max-width: 1450px; margin: 0 auto; padding: 32px 48px 0; }

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-bright);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
}

h1, h2, h3 { margin-top: 0; font-family: Georgia, "Times New Roman", serif; }

.hero-title {
  margin-bottom: 8px;
  text-align: center;
  font-size: clamp(2.4rem, 5vw, 5.1rem);
  line-height: 1;
}

.gold-text { color: var(--gold-bright); }

.hero-copy {
  max-width: 900px;
  margin: 0 auto 28px;
  color: var(--muted);
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.panel {
  padding: 28px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(15, 15, 15, 0.98), rgba(3, 3, 3, 0.98));
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.42);
}

.panel-heading {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.panel-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: #090704;
  background: var(--gold-bright);
  border-radius: 12px;
  font-size: 2.2rem;
}

.panel-kicker {
  margin: 0 0 5px;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.panel h2 { margin-bottom: 8px; font-size: clamp(2rem, 3vw, 3.2rem); }
.panel p { color: var(--muted); line-height: 1.5; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-grid .full { grid-column: 1 / -1; }

label { display: block; font-weight: 700; }

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid #686868;
  border-radius: 4px;
  color: var(--white);
  background: #101214;
  font: inherit;
}

textarea {
  min-height: 210px;
  resize: vertical;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 16px 0;
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 400;
}

.check-label input { width: 22px; min-height: 22px; margin: 0; accent-color: var(--gold); }
.text-link { color: var(--gold-bright); text-underline-offset: 4px; }
.reassurance { margin: 14px 0 0; text-align: center; font-size: 0.92rem; }

.steps { list-style: none; margin: 24px 0; padding: 0; }
.steps li { display: flex; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(214, 163, 25, 0.35); }
.steps span { display: grid; place-items: center; width: 38px; height: 38px; border: 2px solid var(--gold); border-radius: 50%; color: var(--gold-bright); font-weight: 800; }

.security-band {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 18px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  background: linear-gradient(90deg, transparent, rgba(214, 163, 25, 0.13), transparent);
}

.security-band strong { color: var(--gold-bright); font: 700 1.35rem Georgia, serif; }
.security-band span { color: var(--muted); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 42px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer em { color: var(--gold-bright); font-family: Georgia, serif; }

.plan-intro { text-align: center; }
.plan-intro h2 { margin-bottom: 6px; color: var(--gold-bright); }
.plan-intro p { margin-top: 0; }

.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.plan-option { position: relative; }
.plan-option input { position: absolute; opacity: 0; pointer-events: none; }
.plan-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 122px;
  padding: 18px;
  border: 2px solid var(--gold);
  border-radius: 9px;
  color: #0a0804;
  cursor: pointer;
}
.plan-check { width: 36px; height: 36px; border: 3px solid #0a0804; box-shadow: 0 0 0 3px var(--gold-bright); }
.plan-option input:checked + .plan-card { outline: 4px solid var(--gold-bright); outline-offset: 2px; filter: brightness(1.1); }
.plan-option input:checked + .plan-card .plan-check { background: #0a0804; box-shadow: inset 0 0 0 7px var(--gold-bright), 0 0 0 3px #0a0804; }
.plan-card h3 { margin: 0 0 4px; font-size: 1.65rem; }
.plan-card strong, .plan-card small { display: block; }
.plan-card small { margin-top: 4px; font-weight: 800; }
.bronze { background: linear-gradient(115deg, #a35f29, #d89851, #8e4c21); }
.silver { background: linear-gradient(115deg, #ababab, #eeeeee, #979797); }
.gold-plan { background: linear-gradient(115deg, #c8901c, #f6cf63, #bd7f0f); }
.corporate { background: linear-gradient(115deg, #dedbd4, #ffffff, #c7c4bd); }

.full-access {
  margin-top: 16px;
  padding: 15px 18px;
  border: 2px solid var(--gold);
  border-radius: 9px;
  text-align: center;
}
.full-access h3 { margin-bottom: 8px; color: var(--gold-bright); font-size: 1.45rem; }
.full-access p { margin: 5px 0; }
.differentiator { color: var(--gold-bright) !important; font-size: 1.18rem; font-weight: 900; text-transform: uppercase; }

.dashboard-shell { max-width: 1450px; margin: 0 auto; padding: 34px 46px; }
.dashboard-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 24px; }
.dashboard-top h1 { margin-bottom: 5px; font-size: clamp(2.4rem, 4vw, 4.5rem); }
.dashboard-top p { margin: 0; color: var(--muted); }
.status-pill { padding: 10px 16px; border: 1px solid var(--gold); border-radius: 999px; color: var(--gold-bright); font-weight: 800; }
.dashboard-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 22px; }
.upload-zone { display: grid; place-items: center; min-height: 250px; padding: 28px; border: 2px dashed var(--gold); border-radius: 10px; text-align: center; background: rgba(214, 163, 25, 0.045); }
.upload-zone input { max-width: 520px; }
.upload-zone h2 { margin-bottom: 8px; font-size: 2.2rem; }
.upload-zone p { max-width: 620px; margin: 0 auto 18px; }
.dashboard-card { padding: 22px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel); }
.dashboard-card h2 { margin-bottom: 10px; color: var(--gold-bright); }
.dashboard-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.dashboard-list li { padding: 15px; border-left: 4px solid var(--gold); background: rgba(255, 255, 255, 0.035); }
.empty-state { color: var(--muted); }

.support-shell { max-width: 1120px; padding-bottom: 24px; }

.support-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 950px;
  margin: 0 auto;
  padding: 34px 38px 38px;
}

.support-watermark {
  position: absolute;
  z-index: -1;
  inset: 4% 16%;
  background: url("ibs-logo.png") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.support-content { position: relative; z-index: 1; }
.support-heading { max-width: 620px; margin: 0 auto 24px; }
.support-fields { gap: 18px; }
.support-submit { max-width: 420px; margin: 24px auto 0; }

.contact-shell {
  min-height: calc(100vh - 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 24px 54px;
  text-align: center;
}

.contact-shell h1 {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font: 800 clamp(2.8rem, 6vw, 5.8rem)/1 Georgia, "Times New Roman", serif;
  letter-spacing: 0.12em;
}

.contact-logo {
  width: min(440px, 78vw);
  height: auto;
  filter: brightness(1.12) drop-shadow(0 0 28px rgba(242, 197, 72, 0.22));
}

.contact-details {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.contact-details a {
  color: var(--gold-bright);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  text-decoration: none;
}

.contact-details a:hover,
.contact-details a:focus-visible { text-decoration: underline; text-underline-offset: 5px; }

.coming-shell {
  max-width: 1500px;
  margin: 0 auto;
  padding: 42px 28px 28px;
}

.coming-hero {
  position: relative;
  overflow: hidden;
  padding: 20px 20px 34px;
  text-align: center;
}

.coming-hero::before,
.coming-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright));
  box-shadow: 0 0 18px rgba(242, 197, 72, 0.55);
}

.coming-hero::before { left: 0; }
.coming-hero::after { right: 0; transform: rotate(180deg); }

.coming-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--gold-bright);
  font: 800 clamp(3.2rem, 7vw, 7rem)/0.95 Georgia, "Times New Roman", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-subtitle {
  position: relative;
  z-index: 1;
  margin: 20px 0 8px;
  color: var(--white);
  font: 700 clamp(1.7rem, 3vw, 3rem)/1.1 Georgia, "Times New Roman", serif;
}

.coming-intro {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.5;
}

.future-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.future-card {
  min-height: 310px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 10px;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 163, 25, 0.12), transparent 36%),
    linear-gradient(145deg, #0d0d0d, #030303);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.future-card.formulation {
  grid-template-columns: 1.25fr 0.75fr;
}

.future-product {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: center;
}

.future-icon {
  display: grid;
  place-items: center;
  min-height: 310px;
  padding: 34px;
  color: var(--gold-bright);
  border-right: 1px solid rgba(214, 163, 25, 0.45);
}

.future-icon svg {
  width: min(190px, 82%);
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(242, 197, 72, 0.24));
}

.future-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.future-card-copy h2 {
  margin: 0;
  color: var(--gold-bright);
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.future-rule {
  width: 74px;
  margin: 18px 0;
  border-top: 2px solid var(--gold-bright);
}

.future-card-copy p {
  margin: 0;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.55;
}

.future-card.formulation .formulation-tagline {
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.future-card.formulation .future-card-copy {
  padding: 22px;
}

.future-card.formulation .future-card-copy h2 {
  font-size: clamp(1.45rem, 2vw, 2.15rem);
}

.future-card.formulation .future-card-copy p {
  font-size: 0.95rem;
}

.future-card.formulation .formulation-margin {
  margin-top: 12px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

@media (max-width: 1400px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { grid-column: 1 / -1; justify-content: center; flex-wrap: wrap; }
  .header-cta { grid-column: 2; grid-row: 1; }
}

@media (max-width: 1050px) {
  .two-column, .dashboard-grid, .future-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-header { display: block; padding: 16px 20px; }
  .brand img { width: 86px; height: 86px; }
  .brand-name strong { font-size: 1.8rem; }
  .brand-name span { font-size: 0.75rem; }
  .brand-name small { display: none; }
  .main-nav { margin-top: 16px; gap: 18px; }
  .header-cta { width: 100%; margin-top: 14px; }
  .page-shell, .dashboard-shell { padding: 24px 18px 0; }
  .two-column, .plans, .field-grid { grid-template-columns: 1fr; }
  .field-grid .full { grid-column: auto; }
  .panel { padding: 20px; }
  .panel-heading { grid-template-columns: 54px 1fr; }
  .panel-icon { width: 52px; height: 52px; font-size: 1.5rem; }
  .form-row, .security-band, .site-footer, .dashboard-top { align-items: flex-start; flex-direction: column; }
  .site-footer { padding: 22px 18px; }
  .support-panel { padding: 24px 20px 28px; }
  .support-watermark { inset: 12% 2%; }
  .coming-shell { padding: 26px 14px 18px; }
  .coming-hero::before, .coming-hero::after { display: none; }
  .future-card, .future-card.formulation { grid-template-columns: 1fr; }
  .future-product, .future-icon { min-height: 230px; border-right: 0; border-bottom: 1px solid rgba(214, 163, 25, 0.45); }
  .future-card-copy { padding: 24px 20px 28px; }
}
