:root {
  --ink: #17302d;
  --muted: #667a76;
  --line: #dce5e1;
  --paper: #f6f8f5;
  --card: #ffffff;
  --brand: #0f5149;
  --brand-strong: #0a3d37;
  --brand-soft: #dcece7;
  --mint: #cce2da;
  --warm: #efe7d9;
  --warm-ink: #6a5334;
  --danger: #a44040;
  --shadow: 0 24px 70px rgba(21, 49, 44, .12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 13px;
}

* {
  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;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.support-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 76px;
  padding: 0 max(26px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(246, 248, 245, .92);
  border-bottom: 1px solid rgba(23, 48, 45, .08);
  backdrop-filter: blur(18px);
}

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

.support-brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--brand);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.support-brand > span:last-child {
  display: grid;
  gap: 1px;
}

.support-brand strong {
  font-size: 17px;
  letter-spacing: -.02em;
}

.support-brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
}

.support-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.support-header nav a {
  color: #4d625e;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
}

.support-header nav a:hover {
  color: var(--ink);
}

.support-header .header-signin {
  padding: 10px 15px;
  border: 1px solid #bfd0ca;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
}

.support-hero {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  padding: 78px max(26px, calc((100vw - 1240px) / 2)) 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 520px);
  gap: 78px;
  align-items: center;
  background:
    radial-gradient(circle at 8% 8%, rgba(193, 226, 215, .22), transparent 29%),
    radial-gradient(circle at 88% 28%, rgba(213, 232, 224, .18), transparent 31%),
    linear-gradient(145deg, #0f4b44 0%, #123d39 54%, #102f2d 100%);
  color: #fff;
}

.hero-noise {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero-copy,
.workspace-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}

.eyebrow.dark {
  color: var(--brand);
}

.eyebrow.light {
  color: #b7d8cf;
}

.hero-copy h1 {
  margin: 18px 0 22px;
  max-width: 720px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 720;
}

.hero-copy p {
  max-width: 660px;
  margin: 0;
  color: #d8e9e4;
  font-size: 18px;
  line-height: 1.7;
}

.hero-links {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-links a {
  color: #f6fbf9;
  font-size: 13px;
  font-weight: 720;
  text-underline-offset: 5px;
}

.workspace-card {
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 32px 86px rgba(4, 24, 21, .28);
}

.workspace-card-heading {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: start;
}

.workspace-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 20px;
  font-weight: 700;
}

.workspace-card h2 {
  margin: 6px 0 7px;
  font-size: 28px;
  letter-spacing: -.035em;
}

.workspace-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.workspace-form {
  margin-top: 26px;
}

.workspace-form label,
.support-form label {
  display: grid;
  gap: 8px;
  color: #3e514d;
  font-size: 12px;
  font-weight: 750;
}

.workspace-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.workspace-input-row input,
.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid #cfdad6;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border .15s ease, box-shadow .15s ease, background .15s ease;
}

.workspace-input-row input {
  min-width: 0;
  height: 48px;
  padding: 0 14px;
}

.workspace-input-row input:focus,
.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: #7fa99e;
  box-shadow: 0 0 0 4px rgba(15, 81, 73, .10);
}

.workspace-input-row button {
  height: 48px;
  padding: 0 17px;
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  font-weight: 750;
}

.finder-message {
  margin-top: 14px;
  padding: 11px 13px;
  border-radius: 11px;
  background: #f2f5f3;
  color: #536762;
  font-size: 12px;
  line-height: 1.5;
}

.finder-message.error {
  background: #f9eeee;
  color: #884343;
}

.school-result {
  margin-top: 16px;
  padding: 14px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #d9e3df;
  border-radius: 15px;
  background: #f8faf8;
}

.school-result-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #e1eee9;
  color: var(--brand);
  font-weight: 800;
}

.school-result > div:nth-child(2) {
  display: grid;
  gap: 3px;
}

.school-result strong {
  font-size: 13px;
}

.school-result span {
  color: var(--muted);
  font-size: 11px;
}

.school-result a {
  text-decoration: none;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.workspace-footnote {
  margin-top: 18px;
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #e4ebe8;
  color: var(--muted);
  font-size: 11px;
}

.workspace-footnote button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--brand);
  cursor: pointer;
  font-size: 11px;
  font-weight: 780;
}

.support-section {
  padding: 96px max(26px, calc((100vw - 1240px) / 2));
}

.section-heading {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: end;
}

.section-heading h2,
.faq-intro h2,
.contact-copy h2,
.principles-card h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -.048em;
  font-weight: 700;
}

.section-heading p,
.faq-intro p,
.contact-copy > p,
.principles-card > div:first-child > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.help-section {
  background: #fbfcfa;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.help-card {
  min-height: 290px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.help-card:hover {
  background: #f1f6f3;
}

.help-card-icon {
  color: #87a29b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.help-card strong {
  margin-top: 46px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.help-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.help-card-link {
  margin-top: auto;
  padding-top: 26px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.faq-section {
  background: #f1f4f0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 88px;
}

.faq-intro {
  position: sticky;
  top: 112px;
  align-self: start;
}

.faq-intro p {
  margin-top: 22px;
}

.text-link {
  margin-top: 24px;
  display: inline-block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.faq-list {
  border-top: 1px solid #cfd9d5;
}

.faq-item {
  border-bottom: 1px solid #cfd9d5;
}

.faq-item > button {
  width: 100%;
  min-height: 86px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 30px;
  align-items: center;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-item > button span {
  font-size: 17px;
  font-weight: 680;
  letter-spacing: -.015em;
}

.faq-item > button i {
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: 22px;
  font-style: normal;
  transition: transform .18s ease;
}

.faq-item > button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 52px 26px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.support-principles {
  background: #fff;
}

.principles-card {
  padding: 48px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 76px;
  border-radius: var(--radius-lg);
  background: #123c38;
  color: #fff;
}

.principles-card > div:first-child > p {
  margin-top: 20px;
  color: #c9ddd8;
}

.principle-list {
  display: grid;
  border-top: 1px solid rgba(255,255,255,.18);
}

.principle-list > div {
  min-height: 108px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 14px;
  align-content: center;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.principle-list span {
  grid-row: 1 / 3;
  color: #91b8af;
  font-size: 11px;
  font-weight: 800;
}

.principle-list strong {
  font-size: 15px;
}

.principle-list small {
  margin-top: 4px;
  color: #bdd1cc;
  font-size: 12px;
  line-height: 1.5;
}

.contact-section {
  background: #f7f8f5;
}

.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 92px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy > p {
  margin-top: 20px;
}

.response-notes {
  margin-top: 34px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.response-notes > div {
  padding: 18px 0;
  display: grid;
  gap: 5px;
  border-bottom: 1px solid var(--line);
}

.response-notes strong {
  font-size: 12px;
}

.response-notes span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.support-form {
  padding: 30px;
  border: 1px solid #d9e2de;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(25, 54, 49, .07);
}

.form-grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.support-form {
  display: grid;
  gap: 17px;
}

.support-form input,
.support-form select {
  height: 48px;
  padding: 0 13px;
}

.support-form textarea {
  resize: vertical;
  min-height: 150px;
  padding: 13px;
  line-height: 1.55;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.support-form-status {
  padding: 13px 14px;
  border-radius: 12px;
  background: #e6f2ed;
  color: #285f56;
  font-size: 12px;
  line-height: 1.55;
}

.support-form-status.error {
  background: #f9ecec;
  color: #8e4242;
}

.submit-support {
  min-height: 50px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.submit-support:disabled {
  opacity: .58;
  cursor: wait;
}

.form-privacy {
  color: #7b8e89;
  font-size: 10px;
  line-height: 1.5;
}

.closing-cta {
  margin: 0 max(26px, calc((100vw - 1240px) / 2)) 90px;
  padding: 46px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  border-radius: 26px;
  background: #0f302d;
  color: #fff;
}

.closing-cta h2 {
  max-width: 800px;
  margin: 9px 0 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.closing-cta button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  background: #fff;
  color: #17302d;
  cursor: pointer;
  font-weight: 800;
}

.support-footer {
  min-height: 170px;
  padding: 40px max(26px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  border-top: 1px solid #dce4e0;
  background: #eef2ee;
}

.footer-brand small {
  color: #778a85;
}

.support-footer p {
  max-width: 470px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.support-footer > div:last-child {
  display: flex;
  gap: 20px;
}

.support-footer > div:last-child a {
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

@media (max-width: 1040px) {
  .support-hero {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .workspace-card {
    max-width: 680px;
  }

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

  .faq-layout,
  .contact-layout,
  .principles-card {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq-intro,
  .contact-copy {
    position: static;
  }

  .principles-card {
    padding: 38px;
  }
}

@media (max-width: 760px) {
  .support-header {
    height: 68px;
    padding-inline: 18px;
  }

  .support-header nav a:not(.header-signin) {
    display: none;
  }

  .support-hero {
    min-height: 0;
    padding: 56px 18px 64px;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .hero-copy p {
    font-size: 15px;
  }

  .workspace-card {
    padding: 22px;
    border-radius: 21px;
  }

  .workspace-input-row {
    grid-template-columns: 1fr;
  }

  .school-result {
    grid-template-columns: 42px 1fr;
  }

  .school-result a {
    grid-column: 2;
  }

  .support-section {
    padding: 68px 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .help-card {
    min-height: 220px;
  }

  .help-card strong {
    margin-top: 28px;
  }

  .principles-card,
  .support-form {
    padding: 24px;
    border-radius: 20px;
  }

  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .closing-cta {
    margin: 0 18px 68px;
    padding: 30px 24px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .support-footer {
    padding: 34px 18px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-footer > div:last-child {
    justify-content: flex-start;
  }
}


/* 2026-08-31 — iPhone Safari polish */
html{-webkit-text-size-adjust:100%;text-size-adjust:100%;overflow-x:hidden}
body{overflow-x:hidden}
button,a,input,select,textarea{touch-action:manipulation;-webkit-tap-highlight-color:rgba(15,81,73,.10)}
@media(max-width:760px){
  input:not([type="checkbox"]):not([type="radio"]),select,textarea{font-size:16px!important}
  .support-header{
    height:calc(68px + env(safe-area-inset-top));
    padding-top:env(safe-area-inset-top);
    padding-left:max(18px,env(safe-area-inset-left));
    padding-right:max(18px,env(safe-area-inset-right));
  }
  .support-hero,.support-section{
    padding-left:max(18px,env(safe-area-inset-left));
    padding-right:max(18px,env(safe-area-inset-right));
  }
  .workspace-input-row input,.workspace-input-row button{min-height:56px}
  .workspace-footnote{gap:12px;flex-wrap:wrap}
  .support-footer{
    padding-left:max(18px,env(safe-area-inset-left));
    padding-right:max(18px,env(safe-area-inset-right));
    padding-bottom:calc(34px + env(safe-area-inset-bottom));
  }
  .closing-cta{
    margin-left:max(18px,env(safe-area-inset-left));
    margin-right:max(18px,env(safe-area-inset-right));
  }
}

/* Middos brand system */
.middos-mark{
  color:transparent!important;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 73% 25%,#e5ad4a 0 5%,transparent 5.8%),
    linear-gradient(#fff,#fff) 50% 29%/54% 11% no-repeat,
    linear-gradient(#fff,#fff) 50% 57%/11% 49% no-repeat,
    linear-gradient(145deg,#116b62 0%,#0b514c 74%,#093f3d 100%)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18),0 7px 18px rgba(9,63,61,.12);
}
.middos-mark::after{
  content:"";
  position:absolute;
  inset:6px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:inherit;
  pointer-events:none;
}
.middos-brand-rule{
  display:block;
  width:38px;
  height:2px;
  margin-top:4px;
  border-radius:999px;
  background:linear-gradient(90deg,#0f6158 0 48%,#3d72d8 48% 76%,#e5ad4a 76%);
}
.middos-thread{display:inline-flex;align-items:center;gap:4px}
.middos-thread i,.middos-thread b{display:block;width:5px;height:5px;border-radius:50%;background:#0f6158;position:relative}
.middos-thread i:not(:last-child)::after,.middos-thread b:not(:last-child)::after{content:"";position:absolute;width:7px;height:1px;left:5px;top:2px;background:#8cbab1}
.middos-thread i:nth-child(2),.middos-thread b:nth-child(2){background:#3d72d8}
.middos-thread i:nth-child(3),.middos-thread b:nth-child(3){background:#e5ad4a}
.middos-thread.light i:first-child{background:#b8ded5}.middos-thread.light i:not(:last-child)::after{background:rgba(255,255,255,.35)}

:root{--middos-blue:#3d72d8;--middos-gold:#e5ad4a}
.support-header{background:rgba(250,252,250,.96);backdrop-filter:blur(16px)}
.support-brand-mark{width:40px!important;height:40px!important;border-radius:12px!important}
.support-brand strong{font-weight:830;color:#142f32}
.support-brand-flag{border-color:rgba(255,255,255,.16);background:rgba(255,255,255,.07);box-shadow:none}.support-brand-flag b{color:#d7eee8}.support-brand-flag em{color:#a9cbc3}
.support-hero{background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:42px 42px}
.support-hero::after{content:"";position:absolute;left:max(24px,calc((100vw - 1180px)/2));top:52px;width:62px;height:4px;border-radius:99px;background:linear-gradient(90deg,#8cc6ba 0 52%,#6ea1ef 52% 77%,#e5ad4a 77%)}
.workspace-card{border-color:#d3e1dc;box-shadow:0 30px 80px rgba(13,53,49,.13)}
.workspace-icon{background:linear-gradient(145deg,#e0eee9,#eaf0fb);color:#0f6158}
.workspace-input-row button{background:linear-gradient(145deg,#126b61,#0b514c)}
.help-card{transition:transform .16s ease,border-color .16s ease,box-shadow .16s ease}.help-card:hover{transform:translateY(-2px);border-color:#bfd7d0;box-shadow:0 14px 34px rgba(14,74,68,.08)}
@media(max-width:760px){.support-hero::after{left:max(18px,env(safe-area-inset-left));top:24px;width:48px;height:3px}.support-hero{background-size:30px 30px}}

/* identity v2 */
.support-header .middos-lockup{gap:10px}.support-code{margin-bottom:20px;border-color:rgba(255,255,255,.17);background:rgba(255,255,255,.07);color:#bad1cb}.support-code b{color:#fff}.workspace-card,.help-card,.faq-list details,.support-form-card{border-radius:18px 18px 6px 18px}.workspace-card{position:relative}.workspace-card::after{content:"";position:absolute;right:0;top:0;width:28px;height:28px;background:linear-gradient(225deg,#e8efec 0 49%,transparent 50%)}.support-hero{background:linear-gradient(125deg,#102f32 0%,#0c514d 65%,#184b6a 100%)!important}


/* 2026-09-01 brand v3 */
.support-header{background:var(--middos-paper)!important;border-top:4px solid var(--middos-ink)!important;border-bottom:1px solid var(--middos-line)!important}.support-hero{background:var(--middos-ink)!important}.support-hero::after{background:var(--middos-coral)!important;width:58px!important;height:7px!important;border-radius:0!important}
.support-code{background:rgba(255,255,255,.07)!important;border-color:rgba(255,255,255,.22)!important;box-shadow:3px 3px 0 var(--middos-coral)!important}.support-code b{color:#fff!important}
.workspace-card,.help-card,.faq-list details,.faq-item,.support-form-card,.support-form{border-radius:12px!important}.workspace-card{border:1px solid var(--middos-ink)!important;box-shadow:8px 8px 0 var(--middos-coral)!important}.workspace-card::after{display:none!important}
.help-card{border:1px solid var(--middos-line)!important;border-top:4px solid var(--middos-cobalt)!important}.help-card:nth-child(even){border-top-color:var(--middos-coral)!important}.help-card:hover{border-color:var(--middos-ink)!important;box-shadow:5px 5px 0 #e2e6ff!important}
.workspace-input-row button,.submit-support{background:var(--middos-cobalt)!important;border:1px solid var(--middos-ink)!important;box-shadow:3px 3px 0 var(--middos-ink)!important}.principles-card,.closing-cta{background:var(--middos-ink)!important}.support-footer{background:var(--middos-cream)!important;border-top:4px solid var(--middos-ink)!important}


/* 2026-08-31 calm identity */
.support-header{background:rgba(250,250,248,.96)!important;border-top:0!important;border-bottom:1px solid var(--middos-line)!important}
.support-hero{background:#1d2028!important}
.support-hero::after{left:max(18px,env(safe-area-inset-left))!important;top:27px!important;width:36px!important;height:2px!important;border-radius:99px!important;background:#8e98dd!important}
.support-code{background:rgba(255,255,255,.055)!important;border-color:rgba(255,255,255,.16)!important;box-shadow:none!important}.support-code b{color:#fff!important}
.workspace-card,.help-card,.faq-list details,.faq-item,.support-form-card,.support-form{border-radius:11px!important}
.workspace-card{border:1px solid var(--middos-line)!important;box-shadow:0 18px 50px rgba(20,24,35,.07)!important}.workspace-card::after{display:none!important}
.help-card{border:1px solid var(--middos-line)!important;border-top:1px solid var(--middos-line)!important;box-shadow:none!important}.help-card:nth-child(even){border-top-color:var(--middos-line)!important}.help-card:hover{transform:translateY(-1px)!important;border-color:var(--middos-line-strong)!important;box-shadow:0 10px 25px rgba(20,24,35,.05)!important}
.workspace-input-row button,.submit-support{background:var(--middos-accent)!important;border:1px solid var(--middos-accent)!important;box-shadow:none!important}
.principles-card,.closing-cta{background:#1d2028!important}.support-footer{background:var(--middos-cream)!important;border-top:1px solid var(--middos-line)!important}


/* 2026-08-31 natural product design */
.support-header{background:rgba(251,251,250,.96)!important;border:0!important;border-bottom:1px solid #e5e6e8!important}
.support-hero{background:#f5f6fa!important;color:#202124!important}
.support-hero h1,.support-hero h2,.support-hero p,.support-hero a{color:inherit!important}.support-hero::after{display:none!important}
.support-code{display:none!important}
.workspace-card{border:1px solid #e4e5e8!important;border-radius:12px!important;box-shadow:0 16px 45px rgba(26,28,33,.06)!important;background:#fff!important}.workspace-card::after{display:none!important}
.help-card{border:1px solid #e5e6e9!important;border-radius:10px!important;box-shadow:none!important;background:#fff!important}.help-card:hover{transform:translateY(-1px)!important;border-color:#d7d9de!important;box-shadow:0 8px 22px rgba(26,28,33,.04)!important}
.workspace-input-row button,.submit-support{background:#202124!important;border:1px solid #202124!important;box-shadow:none!important;color:#fff!important}
.principles-card{background:#202124!important}.closing-cta{background:#f1f2f7!important;color:#202124!important}.closing-cta *{color:inherit!important}.support-footer{background:#f5f3ee!important;border-top:1px solid #dfded9!important}


/* 2026-08-31 — support without school locator */
.support-hero{
  grid-template-columns:minmax(0,860px)!important;
  justify-content:center!important;
  min-height:480px!important;
  padding-top:88px!important;
  padding-bottom:88px!important
}
.support-hero .hero-copy{
  width:100%!important;
  max-width:860px!important;
  margin:0 auto!important;
  text-align:center!important
}
.support-hero .hero-copy h1,
.support-hero .hero-copy p{margin-left:auto!important;margin-right:auto!important}
.support-hero .hero-links{justify-content:center!important}
@media(max-width:760px){
  .support-hero{
    min-height:0!important;
    padding-top:64px!important;
    padding-bottom:68px!important
  }
}
