:root {
  --ink: #151413;
  --muted: #6f6962;
  --line: #e3ddd4;
  --soft: #f4efe7;
  --panel: #ffffff;
  --navy: #1b1a18;
  --blue: #8a5d34;
  --teal: #6d7a69;
  --green: #416f54;
  --red: #9d4238;
  --amber: #9a681f;
  --sand: #dfd0bd;
  --cream: #fbf8f2;
  --shadow: 0 18px 55px rgba(37, 31, 24, 0.1);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Almarai", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(223, 208, 189, 0.6), transparent 34rem),
    linear-gradient(180deg, #fbf8f2 0%, #f4efe7 46%, #eee7dd 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: rgba(251, 248, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 8px 22px rgba(37, 31, 24, 0.14);
}

.topbar h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover {
  background: rgba(27, 26, 24, 0.07);
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--navy);
  color: #fff;
}

.button.primary:hover {
  background: #332f2a;
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--navy);
}

.button.secondary:hover {
  background: #f2eadf;
}

main {
  display: grid;
  gap: 24px;
  width: min(1380px, calc(100% - 36px));
  margin: 30px auto 58px;
}

section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  min-height: 640px;
}

.hero-copy,
.hero-dashboard {
  background: var(--cream);
}

.hero-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 82px);
}

.hero-copy h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-brand {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-dashboard {
  display: grid;
  align-content: stretch;
  gap: 1px;
  background: var(--line);
}

.signal-card,
.signal-grid > div,
.market-strip {
  background: #fffaf2;
  padding: 28px;
}

.signal-card {
  display: grid;
  align-content: center;
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(27, 26, 24, 0.96), rgba(138, 93, 52, 0.86)),
    #1b1a18;
  color: #fff;
}

.signal-card span,
.signal-grid span,
.market-strip span {
  color: inherit;
  opacity: 0.74;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 38px;
}

.signal-card p,
.signal-grid p,
.market-strip p {
  margin: 8px 0 0;
  color: inherit;
  opacity: 0.82;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.signal-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 38px;
}

.signal-grid p,
.market-strip p {
  color: var(--muted);
}

.learning,
.themes,
.newsletter,
.delivery-rules,
.monetization {
  padding-bottom: 22px;
}

.path-grid,
.theme-grid,
.delivery-grid,
.pricing-grid {
  display: grid;
  gap: 1px;
  margin-top: 2px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.path-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.path-grid article,
.theme-grid article,
.delivery-grid article,
.pricing-grid article {
  padding: 22px;
  background: #fffaf2;
}

.path-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eee3d2;
  color: var(--green);
  font-size: 13px;
  font-weight: 860;
}

.path-grid h3,
.theme-grid h3,
.pricing-grid h3,
.brief-card h3 {
  margin: 14px 0 8px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
}

.path-grid p,
.theme-grid p,
.pricing-grid li,
.brief-card li {
  color: var(--muted);
}

.theme-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.theme-grid article {
  display: grid;
  align-content: start;
}

.theme-grid span {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f0e5d7;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.delivery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-inline: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.delivery-grid article {
  min-height: 190px;
}

.delivery-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid #d7c7b2;
  border-radius: 999px;
  color: var(--green);
  font-size: 13px;
  font-weight: 860;
}

.delivery-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
}

.delivery-grid p {
  margin: 0;
  color: var(--muted);
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.newsletter-copy,
.brief-card {
  background: var(--cream);
  padding: 26px;
}

.newsletter-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.14;
}

.newsletter-copy > p:not(.eyebrow),
.form-note {
  max-width: 780px;
  color: var(--muted);
}

.signup-form {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 20px;
}

.intake-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  margin-top: 20px;
}

.wide-field {
  grid-column: 1 / -1;
}

.intake-form .button {
  grid-column: 1 / -1;
  justify-self: start;
}

.form-note {
  margin: 12px 0 0;
  font-size: 13px;
}

.brief-card {
  background: #fffaf2;
}

.brief-card h3 {
  margin-top: 0;
}

.brief-card ol {
  margin: 12px 0 0;
  padding-left: 20px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-inline: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pricing-grid article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 268px;
}

.pricing-grid .featured {
  background: #f4eadc;
  box-shadow: inset 0 4px 0 var(--blue);
}

.popular-label {
  position: absolute;
  top: 16px;
  right: 16px;
  margin: 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 860;
}

.price {
  margin: 10px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 860;
}

.price span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
}

.plan-note {
  min-height: 62px;
  margin: 0 0 14px;
  color: var(--muted);
}

.plan-button {
  width: 100%;
  margin-top: 18px;
  align-self: end;
}

.payment-setup {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 18px 26px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fffaf2;
}

.payment-setup h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.payment-kicker {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-setup p {
  margin: 0;
  color: var(--muted);
}

.payment-setup a {
  color: var(--navy);
  font-weight: 800;
}

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

.payment-qr-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.payment-qr-card h4 {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
}

.payment-qr-card p {
  font-size: 13px;
  line-height: 1.55;
}

.payment-qr-card img {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  justify-self: center;
  object-fit: contain;
  border: 1px solid #eadcc8;
  background: #fff;
}

.activation-checklist {
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.activation-checklist h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 16px;
}

.activation-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.payment-setup .form-note {
  grid-column: 1 / -1;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.workspace {
  overflow: hidden;
}

.intro,
.section-heading {
  padding: 24px 26px 16px;
}

.intro h2,
.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: 0;
}

.intro p,
.section-heading p:not(.eyebrow) {
  max-width: 860px;
  margin: 10px 0 0;
  color: var(--muted);
}

.strategy-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.tab {
  min-height: 48px;
  border: 0;
  background: #fffaf2;
  color: var(--muted);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.tab:hover {
  background: #f0e5d7;
}

.tab.is-active {
  background: var(--navy);
  color: #fff;
}

.strategy-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
  gap: 0;
}

.strategy-panel {
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.strategy-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.label {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.strategy-heading h3,
.chart-header h3,
.playbook-grid h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.risk-pill {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e7f4ef;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

#strategy-summary {
  margin: 18px 0 0;
  color: #334155;
}

.fact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 22px 0 0;
}

.fact-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fffaf2;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-weight: 680;
}

.visual-panel {
  padding: 20px 22px 18px;
}

.chart-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.chart-header p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

canvas {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: linear-gradient(180deg, #ffffff, #fffaf2);
}

.legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.line {
  display: inline-block;
  width: 22px;
  height: 3px;
  margin-right: 6px;
  vertical-align: middle;
}

.line.green {
  background: var(--green);
}

.line.gray {
  background: #7d8795;
}

.line.red {
  background: var(--red);
}

.builder {
  padding-bottom: 22px;
}

.controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 26px 18px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 8px 10px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  background: #fff;
}

input,
select {
  min-height: 42px;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(138, 93, 52, 0.24);
  border-color: var(--blue);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 0 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metrics div {
  padding: 16px;
  background: #fffaf2;
}

.metrics span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.metrics strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
}

.scenario-panel {
  margin-top: 20px;
}

.scenario-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 0 26px 10px;
}

.scenario-heading h3 {
  margin: 0;
  font-size: 19px;
}

.scenario-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.scenario-wrap {
  margin-bottom: 4px;
}

.method-card {
  margin: 18px 26px 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fffaf2;
  overflow: hidden;
}

.method-card summary {
  min-height: 48px;
  padding: 13px 16px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 820;
}

.method-card summary:hover {
  background: #f0e5d7;
}

.method-content {
  padding: 0 16px 16px;
  border-top: 1px solid var(--line);
}

.method-content > p {
  margin: 14px 0;
  color: var(--muted);
}

.formula-grid,
.greek-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.formula-grid div,
.greek-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fffaf2;
}

.formula-grid h4,
.greek-grid h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 17px;
}

.formula-grid p,
.greek-grid p {
  margin: 0;
  color: #334155;
}

.greeks {
  padding-bottom: 22px;
}

.greek-grid {
  padding: 0 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-line {
  margin-bottom: 10px !important;
  color: var(--blue) !important;
  font-size: 13px;
  font-weight: 820;
}

.use-case {
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
}

.scenario-name {
  display: inline-flex;
  align-items: center;
  min-width: 70px;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 800;
}

.scenario-name.down {
  background: #fee2e2;
  color: #991b1b;
}

.scenario-name.flat {
  background: #edf2f7;
  color: #334155;
}

.scenario-name.up {
  background: #dcfce7;
  color: #166534;
}

.positive {
  color: var(--green);
  font-weight: 800;
}

.negative {
  color: var(--red);
  font-weight: 800;
}

.neutral {
  color: var(--muted);
  font-weight: 800;
}

.playbook-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.playbook-grid article {
  padding: 22px;
  background: #fffaf2;
}

.playbook-grid p {
  color: var(--muted);
}

ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

li + li {
  margin-top: 8px;
}

.matrix {
  padding-bottom: 22px;
}

.table-wrap {
  margin: 0 26px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fffaf2;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
}

tbody tr:nth-child(even) {
  background: #f5ecdf;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.rules {
  padding-bottom: 24px;
}

.rule-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 26px;
  list-style: none;
  counter-reset: rules;
}

.rule-list li {
  position: relative;
  padding: 16px 16px 16px 52px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fffaf2;
}

.rule-list li::before {
  counter-increment: rules;
  content: counter(rules);
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.disclaimer {
  margin: 18px 26px 0;
  padding: 14px 16px;
  border-left: 4px solid var(--amber);
  background: #fff8ea;
  color: #5b4630;
  border-radius: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto 42px;
  padding: 24px clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  background: #1b1a18;
  color: #fffaf2;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.site-footer p {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
}

.site-footer address {
  display: grid;
  gap: 4px;
  color: #cfc3b3;
  font-style: normal;
  text-align: right;
}

.site-footer a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 960px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .path-grid,
  .theme-grid,
  .delivery-grid,
  .pricing-grid,
  .payment-qr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strategy-tabs,
  .controls,
  .metrics,
  .formula-grid,
  .greek-grid,
  .playbook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strategy-layout {
    grid-template-columns: 1fr;
  }

  .strategy-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .chart-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .chart-header p,
  .scenario-heading p {
    text-align: left;
  }

  .scenario-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  main {
    width: min(100% - 18px, 1240px);
    margin-top: 14px;
  }

  .topbar h1 {
    font-size: 19px;
  }

  .intro,
  .section-heading,
  .strategy-panel,
  .visual-panel,
  .playbook-grid article,
  .hero-copy,
  .signal-card,
  .signal-grid > div,
  .market-strip,
  .newsletter-copy,
  .brief-card,
  .path-grid article,
  .theme-grid article,
  .delivery-grid article,
  .pricing-grid article {
    padding-inline: 16px;
  }

  .hero-copy h2 {
    font-size: 30px;
  }

  .intro h2,
  .section-heading h2 {
    font-size: 22px;
  }

  .hero-actions,
  .signup-form,
  .intake-form {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .signup-form .button,
  .intake-form .button {
    width: 100%;
  }

  .strategy-tabs,
  .controls,
  .metrics,
  .playbook-grid,
  .path-grid,
  .theme-grid,
  .delivery-grid,
  .pricing-grid,
  .payment-qr-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .controls,
  .metrics,
  .table-wrap,
  .method-card,
  .greek-grid,
  .rule-list,
  .disclaimer,
  .delivery-grid,
  .pricing-grid {
    margin-inline: 16px;
    padding-inline: 0;
  }

  .formula-grid,
  .greek-grid {
    grid-template-columns: 1fr;
  }

  .rule-list li,
  .disclaimer {
    padding-inline: 14px;
  }

  .rule-list li {
    padding-left: 48px;
  }
}
