:root {
  --ink: #10251f;
  --ink-2: #20352e;
  --paper: #fff8ea;
  --paper-2: #f3ead9;
  --line: #ddcfba;
  --root: #7a5524;
  --leaf: #126c58;
  --leaf-2: #27b37d;
  --amber: #f0a92e;
  --blue: #3157a4;
  --mint: #dff3e8;
  --sky: #e2ebfb;
  --rose: #f6dfdb;
  --shadow: 0 24px 70px rgba(16, 37, 31, 0.18);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 30;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 76px;
  padding: 12px 28px;
  color: #ffffff;
  background: rgba(16, 37, 31, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: end;
  font-size: 14px;
  font-weight: 850;
}

.nav-links a,
.header-action {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--amber);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.header-action:hover,
.header-action:focus {
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(16, 37, 31, 0.94) 0%, rgba(16, 37, 31, 0.78) 43%, rgba(16, 37, 31, 0.2) 72%),
    url("/assets/rootreboot-hero-lab.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--paper));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 760px);
  margin: 0 auto;
  padding-top: 92px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
}

.hero-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  color: var(--ink);
  background: #ffffff;
}

.btn.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.btn.primary:hover,
.btn.primary:focus {
  background: var(--amber);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 50px 0 0;
}

.hero-proof div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-proof dt {
  color: #ffffff;
  font-size: 28px;
  font-weight: 950;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.notice-strip {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  color: #ffffff;
  background: var(--leaf);
}

.notice-strip strong {
  color: var(--amber);
}

.section {
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
  padding: 92px 0;
}

.intro-grid,
.split-section,
.safety-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.split-copy h2,
.safety-grid h2,
.enrol-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
}

.intro-copy p,
.section-heading p,
.split-copy p,
.safety-grid p,
.enrol-copy p {
  color: rgba(16, 37, 31, 0.75);
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.programme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.programme-card,
.check-panel,
.safety-list article,
.price-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.programme-card {
  min-height: 270px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.programme-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--leaf);
}

.programme-card.seed::before {
  background: var(--amber);
}

.programme-card.branch::before {
  background: var(--blue);
}

.programme-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font-weight: 950;
}

.programme-card h3 {
  margin: 24px 0 10px;
  font-size: 28px;
  line-height: 1.08;
}

.programme-card p {
  margin: 0;
  color: rgba(16, 37, 31, 0.72);
}

.lab-band {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(16, 37, 31, 0.98), rgba(18, 108, 88, 0.96)),
    var(--ink);
}

.lab-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
  padding: 96px 0;
}

.lab-inner h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
}

.lab-inner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.lab-console {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.lab-console ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lab-console li {
  display: grid;
  gap: 4px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.lab-console li:last-child {
  border-bottom: 0;
}

.lab-console strong {
  color: #ffffff;
}

.lab-console span {
  color: rgba(255, 255, 255, 0.72);
}

.check-panel,
.safety-list article {
  padding: 28px;
}

.check-panel h3,
.safety-list h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.check-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.check-panel li {
  color: rgba(16, 37, 31, 0.76);
}

.pricing-section {
  color: #ffffff;
  background: #182f28;
}

.pricing-inner {
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.76);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-grid article {
  min-height: 230px;
  padding: 26px;
  color: var(--ink);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
}

.price-grid h3 {
  margin: 0 0 10px;
  font-size: 26px;
}

.price-grid p {
  color: rgba(16, 37, 31, 0.72);
}

.price-grid strong {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin-top: 12px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--leaf);
  background: var(--mint);
}

.safety-list {
  display: grid;
  gap: 14px;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.policy-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.policy-links a:hover,
.policy-links a:focus {
  background: var(--mint);
}

.enrol-section {
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
  padding: 92px 0 108px;
}

.enrol-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 40px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.form-note {
  padding: 14px;
  border-left: 5px solid var(--amber);
  background: #fff5d7;
}

.enrol-form {
  display: grid;
  gap: 16px;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-weight: 500;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(39, 179, 125, 0.28);
  border-color: var(--leaf);
  background: #ffffff;
}

fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--paper);
}

legend {
  padding: 0 6px;
  font-weight: 950;
}

.choice,
.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 700;
}

.choice input,
.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.enrol-form .btn.primary {
  width: fit-content;
  min-width: 240px;
  color: #ffffff;
  background: var(--leaf);
}

.enrol-form .btn.primary:hover,
.enrol-form .btn.primary:focus {
  color: var(--ink);
  background: var(--amber);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--leaf);
  font-weight: 800;
}

.turnstile-slot {
  min-height: 65px;
}

.turnstile-slot[hidden] {
  display: none;
}

.turnstile-slot.compact {
  min-height: 58px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px 28px;
  color: #ffffff;
  background: var(--ink);
}

.site-footer img {
  width: 220px;
  border-radius: 16px;
}

.site-footer p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: end;
  font-size: 14px;
  font-weight: 800;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--amber);
}

.policy-page {
  width: min(100% - 48px, 900px);
  margin: 0 auto;
  padding: 132px 0 80px;
}

.policy-page h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

.policy-page h2 {
  margin-top: 34px;
  font-size: 28px;
}

.policy-page p,
.policy-page li {
  color: rgba(16, 37, 31, 0.76);
  font-size: 17px;
}

.policy-page .btn {
  margin-top: 28px;
  color: #ffffff;
  background: var(--leaf);
}

.groot-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.groot-panel,
.groot-launcher {
  pointer-events: auto;
}

.groot-panel {
  width: min(calc(100vw - 32px), 420px);
  border: 1px solid rgba(16, 37, 31, 0.14);
  border-radius: 18px;
  overflow: hidden;
  background: #fffdf7;
  box-shadow: 0 28px 90px rgba(16, 37, 31, 0.32);
}

.groot-panel-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 12%, rgba(240, 169, 46, 0.4), transparent 34%),
    linear-gradient(135deg, #10251f, #126c58);
}

.groot-id {
  display: flex;
  gap: 12px;
  align-items: center;
}

.groot-id p,
.groot-id h2 {
  margin: 0;
}

.groot-id p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.groot-id h2 {
  font-size: 24px;
  line-height: 1;
}

.groot-avatar {
  position: relative;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #1b3b32;
  box-shadow: inset 0 -12px 0 rgba(0, 0, 0, 0.2);
}

.groot-sprout {
  position: absolute;
  top: -9px;
  left: 50%;
  width: 30px;
  height: 24px;
  transform: translateX(-50%);
}

.groot-sprout::before,
.groot-sprout::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 18px;
  height: 11px;
  border-radius: 18px 18px 4px 18px;
  background: var(--leaf-2);
}

.groot-sprout::before {
  left: 0;
  transform: rotate(-25deg);
}

.groot-sprout::after {
  right: 0;
  transform: rotate(25deg) scaleX(-1);
}

.groot-face {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 8px);
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 9px;
  background: #e7f4eb;
}

.groot-face::after {
  content: "";
  position: absolute;
  bottom: 15px;
  width: 16px;
  height: 3px;
  border-radius: 3px;
  background: #24453d;
}

.groot-face span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #126c58;
}

.groot-close {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.groot-close:hover,
.groot-close:focus {
  background: rgba(255, 255, 255, 0.2);
}

.groot-messages {
  display: grid;
  gap: 10px;
  max-height: 292px;
  padding: 16px;
  overflow: auto;
  background:
    linear-gradient(180deg, rgba(223, 243, 232, 0.78), rgba(255, 248, 234, 0.78)),
    #fffdf7;
}

.groot-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  box-shadow: 0 10px 28px rgba(16, 37, 31, 0.08);
}

.groot-message p {
  margin: 0;
}

.groot-message.bot {
  justify-self: start;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(16, 37, 31, 0.1);
}

.groot-message.user {
  justify-self: end;
  color: #ffffff;
  background: var(--leaf);
}

.groot-prompts {
  display: flex;
  gap: 8px;
  padding: 12px 16px 0;
  overflow-x: auto;
  background: #fffdf7;
}

.groot-prompts button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(18, 108, 88, 0.18);
  border-radius: 999px;
  color: var(--leaf);
  background: var(--mint);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.groot-prompts button:hover,
.groot-prompts button:focus {
  color: #ffffff;
  background: var(--leaf);
}

.groot-form {
  display: grid;
  gap: 8px;
  padding: 14px 16px 10px;
  background: #fffdf7;
}

.groot-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.groot-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.groot-form input {
  min-height: 44px;
  background: #ffffff;
}

.groot-form button {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.groot-form button:hover,
.groot-form button:focus {
  color: var(--ink);
  background: var(--amber);
}

.groot-disclaimer {
  margin: 0;
  padding: 0 16px 16px;
  color: rgba(16, 37, 31, 0.62);
  background: #fffdf7;
  font-size: 12px;
  font-weight: 700;
}

.groot-launcher {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 10px 18px 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18px 12px, rgba(240, 169, 46, 0.72), transparent 26px),
    linear-gradient(135deg, #10251f, #126c58);
  box-shadow: 0 18px 48px rgba(16, 37, 31, 0.32);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.groot-launcher:hover,
.groot-launcher:focus {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(16, 37, 31, 0.38);
}

.groot-launcher:focus-visible,
.groot-close:focus-visible,
.groot-prompts button:focus-visible,
.groot-form button:focus-visible {
  outline: 3px solid rgba(240, 169, 46, 0.74);
  outline-offset: 3px;
}

.groot-bot {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 48px;
  align-items: end;
  justify-content: center;
}

.groot-bot-pot {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 12px 12px 15px 15px;
  background: #e7f4eb;
  box-shadow: inset 0 -10px 0 rgba(16, 37, 31, 0.12);
}

.groot-bot-pot::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  width: 34px;
  height: 14px;
  border-radius: 999px;
  background: #7a5524;
  transform: translateX(-50%);
}

.groot-bot-sprout {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 34px;
  height: 24px;
  transform: translateX(-50%);
}

.groot-bot-sprout::before,
.groot-bot-sprout::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 19px;
  height: 11px;
  border-radius: 19px 19px 4px 19px;
  background: var(--leaf-2);
}

.groot-bot-sprout::before {
  left: 1px;
  transform: rotate(-28deg);
}

.groot-bot-sprout::after {
  right: 1px;
  transform: rotate(28deg) scaleX(-1);
}

.groot-bot-face {
  display: grid;
  grid-template-columns: repeat(2, 7px);
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.groot-bot-face::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 16px;
  height: 3px;
  border-radius: 3px;
  background: #24453d;
}

.groot-bot-face span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #126c58;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .nav-links {
    display: none;
  }

  .programme-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .split-section,
  .safety-grid,
  .lab-inner,
  .enrol-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand {
    width: 178px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    background-image:
      linear-gradient(90deg, rgba(16, 37, 31, 0.95) 0%, rgba(16, 37, 31, 0.78) 100%),
      url("/assets/rootreboot-hero-lab.png");
    background-position: 63% center;
  }

  .hero-inner {
    width: min(100% - 32px, 640px);
    padding-top: 108px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-proof,
  .field-pair {
    grid-template-columns: 1fr;
  }

  .notice-strip {
    align-items: start;
    flex-direction: column;
  }

  .section,
  .lab-inner,
  .pricing-inner,
  .enrol-section,
  .policy-page {
    width: min(100% - 32px, 680px);
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .enrol-card {
    padding: 22px;
  }

  .enrol-form .btn.primary {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 32px 16px;
  }

  .footer-links {
    justify-content: start;
  }

  .groot-widget {
    right: 14px;
    bottom: 14px;
  }

  .groot-panel {
    width: min(calc(100vw - 28px), 390px);
  }

  .groot-launcher {
    min-height: 60px;
    padding-right: 14px;
  }

  .groot-launcher > span:last-child {
    max-width: 90px;
    line-height: 1.05;
  }
}
