@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Outfit:wght@600;700;800&display=swap");

:root {
  --bg: #f4efe6;
  --paper: #fffaf0;
  --surface: #fffdf7;
  --soft: #eadcc8;
  --soft-strong: #dcc7a9;
  --ink: #1f1b15;
  --muted: #6f675b;
  --faint: #8b8172;
  --line: #d8c9b4;
  --line-strong: #b99d78;
  --accent: #0f766e;
  --accent-dark: #0a524c;
  --warm: #c25f2c;
  --gold: #d79a2b;
  --ok: #27724f;
  --warn: #9a621f;
  --err: #b63d30;
  --panel: #f7f0e2;
  --panel-2: #efe1ca;
  --panel-ink: #1f1b15;
  --panel-muted: #6f675b;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
  font: 17px/1.65 "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.site-admin,
body.site-review {
  --bg: #f4efe6;
  --paper: #fffaf0;
  --surface: #fffdf7;
  --soft: #eadcc8;
  --soft-strong: #dcc7a9;
  --ink: #1f1b15;
  --muted: #6f675b;
  --faint: #8b8172;
  --line: #d8c9b4;
  --line-strong: #b99d78;
  --accent: #0f766e;
  --accent-dark: #0a524c;
  --warm: #c25f2c;
  --gold: #d79a2b;
  --panel: #f7f0e2;
  --panel-2: #efe1ca;
}

a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--warm);
}

.wrap {
  width: min(100% - 44px, 1040px);
  margin: 0 auto;
}

body.site-doc .wrap {
  max-width: 820px;
  padding: 70px 0 90px;
}

body.site-buy .wrap {
  max-width: 640px;
  padding: 56px 0 90px;
}

body.site-review .wrap {
  max-width: 860px;
  padding: 44px 0 90px;
}

body.site-admin .wrap {
  max-width: 1500px;
  padding: 24px 0;
}

.hidden {
  display: none !important;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0 16px;
}

.brand,
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: "Outfit", "DM Sans", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.logo {
  color: var(--ink);
  font-size: 16px;
}

.brand .dot,
.logo .dot {
  position: relative;
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 7px;
  background: var(--accent);
  border: 1px solid var(--accent-dark);
}

.brand .dot::after,
.logo .dot::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--paper);
}

.logo .dot {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 260px);
  gap: 42px;
  align-items: center;
  padding: 66px 0 54px;
}

.hero > :not(.orb) {
  grid-column: 1;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: "Outfit", "DM Sans", sans-serif;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 7vw, 66px);
  font-weight: 800;
  line-height: 1.02;
}

h1 .grad {
  color: var(--accent);
}

.lede,
.sub,
.section-sub,
.updated,
.hint,
.foot,
footer,
.muted {
  color: var(--muted);
}

.lede {
  max-width: 660px;
  margin: 0 0 30px;
  font-size: clamp(17px, 2.4vw, 21px);
}

.sub {
  margin: 0 0 28px;
  font-size: 18px;
}

.cta,
button,
.pack,
.seg {
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

.cta,
button.buy,
button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.cta {
  width: fit-content;
  padding: 15px 24px;
  font-size: 17px;
}

.cta:hover,
button:hover,
.pack:hover,
.seg:hover {
  transform: scale(1.02);
}

.cta:active,
button:active {
  transform: scale(.98);
}

button.buy,
button.primary {
  padding: 11px 16px;
  font: 700 14px/1.2 "DM Sans", sans-serif;
}

button.buy {
  width: 100%;
  margin-top: 4px;
  padding: 15px;
  font-size: 17px;
}

button:disabled,
button.buy:disabled {
  opacity: .54;
  cursor: default;
  transform: none;
}

button:not(.buy):not(.primary) {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 15px;
  font: 700 13px/1.2 "DM Sans", sans-serif;
  cursor: pointer;
}

button:not(.buy):not(.primary):hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.cta-sub {
  display: block;
  margin-top: 14px;
  color: var(--faint);
  font-size: 13px;
}

.orb {
  grid-column: 2;
  grid-row: 1 / span 6;
  position: relative;
  width: min(100%, 244px);
  aspect-ratio: 9 / 14;
  margin: 0 auto;
  border: 8px solid var(--ink);
  border-radius: 34px;
  background: var(--paper);
  overflow: hidden;
}

.orb::before {
  content: "Taki";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 20px;
  color: var(--ink);
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 26px;
  font-weight: 800;
}

.orb::after {
  content: "What can I get done for you?";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
}

section {
  padding: 62px 0;
}

section:nth-of-type(even) {
  background: var(--panel);
  color: var(--ink);
}

section:nth-of-type(even) h2,
section:nth-of-type(even) h3 {
  color: var(--ink);
}

section:nth-of-type(even) .section-sub,
section:nth-of-type(even) p,
section:nth-of-type(even) li {
  color: var(--muted);
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(27px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.section-sub {
  max-width: 580px;
  margin: 0 auto 40px;
  text-align: center;
}

.grid,
.plans,
.site-home .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.feat,
.step,
.plan,
.note,
.contact,
.acct,
.card,
.kpi,
.tablewrap,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feat,
.step,
.plan,
.note,
.contact,
.acct,
.card,
.kpi {
  padding: 22px;
}

.feat .ic {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 22px;
}

.feat h3,
.step h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.feat p,
.step p,
.plan ul {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.step::before {
  counter-increment: s;
  content: counter(s);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.site-home .steps {
  counter-reset: s;
}

.plan {
  text-align: left;
}

.plan.feature {
  border-color: var(--accent);
  background: #f7f0e2;
}

.plan .name {
  color: var(--ink);
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.plan .price {
  margin: 8px 0 2px;
  color: var(--ink);
  font-size: 31px;
  font-weight: 800;
}

.plan .price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.plan .cr {
  margin: 6px 0 12px;
  color: var(--accent-dark);
  font-weight: 800;
}

.plan ul {
  padding: 0;
  list-style: none;
}

.plan li {
  position: relative;
  margin: 7px 0;
  padding-left: 22px;
}

.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.final {
  margin: 22px 0 40px;
  padding: 46px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  text-align: center;
}

.final h2 {
  color: var(--ink);
}

.final .section-sub {
  color: var(--muted);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

footer a {
  color: inherit;
  text-decoration: none;
}

.foot-links {
  display: flex;
  gap: 18px;
}

label {
  display: block;
  margin: 22px 0 8px;
  color: var(--ink);
  font-weight: 800;
}

.hint {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 13px 15px;
  font: 500 16px/1.3 "DM Sans", sans-serif;
}

input:focus {
  border-color: var(--accent);
  outline: 2px solid #cfe5dd;
  outline-offset: 2px;
}

.site-buy .steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}

.site-buy .steps .s {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.site-buy .steps .dot {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 12px;
  font-weight: 800;
}

.site-buy .steps .s.active .dot {
  border-color: var(--accent);
  background: var(--soft);
  color: var(--ink);
}

.site-buy .steps .s.done .dot {
  border-color: var(--ok);
  background: #dcefe8;
  color: var(--ink);
}

.site-buy .steps .bar {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.pack {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
}

.pack.on {
  border-color: var(--accent);
  background: #e0efe8;
}

.pack .c {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.pack .p {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 26px 0 8px;
  color: var(--muted);
  font-size: 15px;
}

.total b {
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
}

#next {
  margin-top: 14px;
}

.link-btn {
  margin-top: 16px;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  color: var(--accent-dark) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-btn:hover {
  color: var(--warm) !important;
}

.msg {
  min-height: 18px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.msg.err {
  color: var(--err);
}

.msg.ok {
  color: var(--ok);
}

.banner {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14.5px;
}

.banner.ok {
  border: 1px solid #80b694;
  background: #e3f0e2;
  color: #245d3d;
}

.banner.warn {
  border: 1px solid #dbad74;
  background: #f8ead2;
  color: #7b4d18;
}

.acct {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  padding: 14px 16px;
}

.acct .id {
  color: var(--ink);
  font-weight: 800;
}

.acct .who {
  color: var(--muted);
  font-size: 13px;
}

.badge {
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge.free {
  background: var(--soft);
  color: var(--muted);
}

.foot {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
}

.updated {
  margin: 0 0 26px;
  font-size: 14px;
}

body.site-doc h1,
body.site-buy h1 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(34px, 7vw, 52px);
}

body.site-buy h1 {
  font-size: clamp(30px, 6vw, 44px);
}

body.site-review h1 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 26px;
}

body.site-review .sub {
  margin: 0 0 24px;
  font-size: 13px;
}

body.site-doc h2 {
  justify-content: flex-start;
  margin: 44px 0 12px;
  font-size: 22px;
  text-align: left;
}

body.site-doc h2::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: none;
  border-radius: 3px;
  background: var(--accent);
}

p,
li {
  color: var(--muted);
}

strong {
  color: var(--ink);
}

.note,
.contact {
  margin: 26px 0;
  background: var(--surface);
}

.note strong,
.contact strong {
  color: var(--ink);
}

table {
  width: 100%;
  margin: 16px 0;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 14.5px;
}

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

thead th,
th {
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
}

tbody tr:nth-child(even) {
  background: var(--paper);
}

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

td:first-child {
  color: var(--ink);
  font-weight: 700;
}

ul {
  padding-left: 20px;
}

li {
  margin: 6px 0;
}

li::marker {
  color: var(--warm);
}

.caps {
  color: var(--muted);
  font-size: 13.5px;
}

hr {
  height: 1px;
  margin: 40px 0;
  border: 0;
  background: var(--line);
}

.dot {
  color: var(--warm);
}

details {
  margin: 12px 0;
  padding: 16px 18px;
}

details[open] {
  border-color: var(--accent);
}

summary {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "+";
  display: grid;
  place-items: center;
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
}

details[open] summary::before {
  content: "-";
  background: var(--warm);
}

details p {
  margin: 12px 0 2px;
  padding-left: 36px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.bar input[type="password"] {
  flex: 1;
  min-width: 220px;
}

.spacer {
  flex: 1;
}

input[type="password"],
input[type="search"] {
  font-size: 13.5px;
}

input[type="password"] {
  width: 200px;
}

input[type="search"] {
  width: 260px;
}

body.site-admin .msg {
  margin: 0 0 16px;
  font-size: 12.5px;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.kpi {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.kpi .k {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.kpi .v {
  margin-top: 6px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
}

.kpi .s {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.kpi .v.ok,
.st.active,
.prof.pos {
  color: var(--ok);
}

.kpi .v.err,
.prof.neg,
.msg.err {
  color: var(--err);
}

.kpi .v.warn,
.st.suspended {
  color: var(--warn);
}

.st.terminated {
  color: var(--err);
}

.kpi .glow {
  display: none;
}

.charts {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 800;
}

.card canvas {
  max-height: 230px;
}

.segs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.seg {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
}

.seg.on {
  border-color: var(--accent);
  background: var(--soft);
  color: var(--ink);
}

.tablewrap {
  overflow: hidden;
  background: var(--surface);
}

.tscroll {
  overflow-x: auto;
}

body.site-admin table {
  margin: 0;
  border: 0;
  border-radius: 0;
  border-collapse: collapse;
  white-space: nowrap;
  font-size: 12.5px;
}

body.site-admin th,
body.site-admin td {
  padding: 11px 13px;
}

body.site-admin th {
  position: sticky;
  top: 0;
  cursor: pointer;
  user-select: none;
}

tbody tr.main {
  cursor: pointer;
}

tbody tr.main:hover {
  background: var(--soft);
}

td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.pill {
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: capitalize;
  white-space: nowrap;
}

.pill.free {
  background: var(--soft);
  color: var(--muted);
}

.pill.plus {
  background: #dcefe8;
  color: #0a524c;
}

.pill.plus_voice {
  background: #f4e0cf;
  color: #88431e;
}

.pill.pro {
  background: #f7edcc;
  color: #735014;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11.5px;
}

.id {
  display: inline-block;
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}

.detail {
  background: var(--paper);
  white-space: normal;
}

.detail .cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  padding: 8px 4px;
}

.detail h4 {
  margin: 0 0 6px;
  color: var(--accent-dark);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.detail .row {
  margin: 2px 0;
  color: var(--muted);
  font-size: 12px;
}

.act,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.act button,
.actions button {
  padding: 7px 12px;
  font-size: 12px;
}

.reinstate,
.act .reinstate {
  border-color: #80b694 !important;
  color: #27724f !important;
}

.terminate,
.act .terminate {
  border-color: #c96e63 !important;
  color: #b63d30 !important;
}

.empty {
  padding: 60px;
  color: var(--muted);
  text-align: center;
}

.acct-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

body.site-review .acct {
  display: block;
  margin: 14px 0;
  padding: 18px 20px;
}

body.site-review .pill {
  border: 1px solid #9f5148;
  background: #f4e0cf;
  color: #88431e;
  text-transform: uppercase;
}

.ident {
  color: var(--ink);
  font-weight: 800;
  word-break: break-all;
}

.meta {
  margin: 6px 0 12px;
  color: var(--muted);
  font-size: 12.5px;
}

.viol {
  margin: 8px 0;
  padding: 9px 12px;
  border-left: 3px solid var(--warm);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--paper);
}

.viol .cat {
  color: var(--warm);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.viol .txt {
  margin: 4px 0;
  color: var(--ink);
  white-space: pre-wrap;
  word-break: break-word;
}

.viol .when {
  color: var(--muted);
  font-size: 11.5px;
}

@media (max-width: 900px) {
  .hero,
  .charts,
  .grid2 {
    grid-template-columns: 1fr;
  }

  .orb {
    grid-column: 1;
    grid-row: auto;
    width: min(100%, 220px);
    margin: 12px 0 0;
  }

  .hero {
    padding-top: 42px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .wrap {
    width: min(100% - 32px, 1040px);
  }

  header,
  footer,
  .acct,
  .total {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    gap: 14px;
  }

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

  .site-buy .steps {
    align-items: flex-start;
  }
}
