/* ==========================================================================
   SMTPOS Landing — pure CSS, no framework.
   Everything is scoped under .smt so it cannot collide with the theme.
   ========================================================================== */

.smt {
	/* Palette — Sidi Bou Said blue against paper white, amber for money moments */
	--smt-ink: #0B1B2B;
	--smt-ink-soft: #10283F;
	--smt-blue: #1668B3;
	--smt-blue-deep: #0E4A85;
	--smt-blue-wash: #E7F0F9;
	--smt-amber: #F2A93B;
	--smt-amber-deep: #C97F12;
	--smt-paper: #FFFFFF;
	--smt-bg: #F5F7FA;
	--smt-tint: #EDF2F7;
	--smt-line: #DCE4EC;
	--smt-line-soft: #E9EEF4;
	--smt-muted: #5A6B7D;
	--smt-muted-dark: #93A6B8;

	/* Type */
	--smt-display: "Space Grotesk", "IBM Plex Sans Arabic", ui-sans-serif, system-ui, sans-serif;
	--smt-body: "IBM Plex Sans Arabic", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
	--smt-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	/* Rhythm */
	--smt-shell: 1180px;
	--smt-gap: 24px;
	--smt-radius: 14px;
	--smt-radius-lg: 22px;
	--smt-section-y: clamp(64px, 8vw, 116px);
	--smt-shadow: 0 1px 2px rgba(11, 27, 43, .04), 0 12px 30px -18px rgba(11, 27, 43, .28);
	--smt-shadow-lg: 0 30px 70px -34px rgba(11, 27, 43, .45);

	position: relative;
	background: var(--smt-bg);
	color: var(--smt-ink);
	font-family: var(--smt-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

/* Arabic and Derja read better with Plex Arabic doing the display work too */
.smt[dir="rtl"] {
	--smt-display: "IBM Plex Sans Arabic", ui-sans-serif, system-ui, sans-serif;
	line-height: 1.75;
}

.smt *,
.smt *::before,
.smt *::after { box-sizing: border-box; }

.smt p,
.smt h1, .smt h2, .smt h3, .smt h4,
.smt ul, .smt ol, .smt figure, .smt form { margin: 0; padding: 0; }

.smt ul, .smt ol { list-style: none; }

.smt a { color: inherit; text-decoration: none; }

.smt img, .smt svg { max-width: 100%; }

.smt :focus-visible {
	outline: 2px solid var(--smt-blue);
	outline-offset: 3px;
	border-radius: 4px;
}

.smt-skip {
	position: absolute;
	inset-inline-start: -9999px;
	top: 0;
	z-index: 200;
	background: var(--smt-ink);
	color: #fff;
	padding: 12px 18px;
	border-radius: 0 0 10px 0;
}
.smt-skip:focus { inset-inline-start: 0; }

/* ------------------------------------------------------------------ shell */

.smt-shell {
	width: 100%;
	max-width: var(--smt-shell);
	margin-inline: auto;
	padding-inline: 22px;
}
.smt-shell--narrow { max-width: 780px; }

.smt-icon {
	width: 1em;
	height: 1em;
	flex: none;
	display: block;
}

/* ----------------------------------------------------------------- header */

.smt-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(245, 247, 250, .82);
	backdrop-filter: saturate(1.6) blur(14px);
	-webkit-backdrop-filter: saturate(1.6) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .25s ease, background .25s ease;
}
.smt-header.is-stuck {
	border-bottom-color: var(--smt-line);
	background: rgba(245, 247, 250, .95);
}

.smt-header__inner {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 68px;
}

.smt-brand {
	display: inline-flex;
	align-items: center;
	flex: none;
	line-height: 0;
}
.smt-brand__logo {
	height: 25px;
	width: auto;
	display: block;
}
.smt-brand__img { height: 32px; width: auto; display: block; }

.smt-footer__logo {
	height: 24px;
	width: auto;
	display: block;
	margin-bottom: 12px;
}

.smt-nav {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-inline-start: auto;
	font-size: 14.5px;
	font-weight: 500;
}
.smt-nav > a {
	color: var(--smt-muted);
	position: relative;
	padding-block: 6px;
	transition: color .18s ease;
}
.smt-nav > a::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 2px;
	background: var(--smt-amber);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .22s ease;
}
.smt[dir="rtl"] .smt-nav > a::after { transform-origin: right center; }
.smt-nav > a:hover { color: var(--smt-ink); }
.smt-nav > a:hover::after { transform: scaleX(1); }

.smt-nav__mobile-actions { display: none; }

.smt-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-inline-start: 18px;
}

/* --------------------------------------------------------- language menu */

.smt-lang { position: relative; }

.smt-lang__toggle {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font: inherit;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--smt-ink);
	background: var(--smt-paper);
	border: 1px solid var(--smt-line);
	border-radius: 999px;
	padding: 7px 12px;
	cursor: pointer;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.smt-lang__toggle:hover { border-color: var(--smt-blue); }
.smt-lang__toggle .smt-icon:first-child { font-size: 15px; color: var(--smt-blue); }
.smt-lang__toggle .smt-icon:last-child {
	font-size: 13px;
	color: var(--smt-muted);
	transition: transform .2s ease;
}
.smt-lang__toggle[aria-expanded="true"] .smt-icon:last-child { transform: rotate(180deg); }
.smt-lang__current { font-family: var(--smt-mono); letter-spacing: .04em; }

.smt-lang__menu {
	position: absolute;
	top: calc(100% + 8px);
	inset-inline-end: 0;
	min-width: 178px;
	background: var(--smt-paper);
	border: 1px solid var(--smt-line);
	border-radius: 12px;
	box-shadow: var(--smt-shadow);
	padding: 5px;
	display: none;
	z-index: 95;
}
.smt-lang.is-open .smt-lang__menu { display: block; }

.smt-lang__item {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	font: inherit;
	font-size: 14px;
	text-align: start;
	background: none;
	border: 0;
	border-radius: 8px;
	padding: 9px 11px;
	cursor: pointer;
	color: var(--smt-ink);
	transition: background .15s ease;
}
.smt-lang__item:hover { background: var(--smt-tint); }
.smt-lang__item.is-active { background: var(--smt-blue-wash); color: var(--smt-blue-deep); }
.smt-lang__code {
	font-family: var(--smt-mono);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .06em;
	color: var(--smt-muted);
	border: 1px solid var(--smt-line);
	border-radius: 5px;
	padding: 1px 5px;
	flex: none;
}
.smt-lang__item.is-active .smt-lang__code { color: var(--smt-blue); border-color: currentColor; }

/* ---------------------------------------------------------------- buttons

   These are <a> elements, so a theme's `a { color }` / `a:hover { color }`
   rules can otherwise beat ours and leave a button with invisible text.
   Every variant therefore states its colour on every state, at a specificity
   the theme won't reach.
   ------------------------------------------------------------------------ */

.smt .smt-btn,
.smt a.smt-btn,
.smt button.smt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: var(--smt-body);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1;
	padding: 12px 20px;
	border-radius: 10px;
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none;
	box-shadow: none;
	transition: transform .16s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.smt .smt-btn .smt-icon { font-size: 17px; transition: transform .2s ease; }
.smt[dir="rtl"] .smt-btn .smt-icon { transform: scaleX(-1); }
.smt .smt-btn:hover .smt-icon { transform: translateX(3px); }
.smt[dir="rtl"] .smt-btn:hover .smt-icon { transform: scaleX(-1) translateX(3px); }
.smt .smt-btn:active { transform: translateY(1px); }

/* Primary — dark fill, white label, always */
.smt .smt-btn--primary,
.smt .smt-btn--primary:link,
.smt .smt-btn--primary:visited {
	background-color: var(--smt-ink);
	color: #fff;
	border-color: var(--smt-ink);
	box-shadow: 0 10px 24px -14px rgba(11, 27, 43, .8);
}
.smt .smt-btn--primary:hover,
.smt .smt-btn--primary:focus,
.smt .smt-btn--primary:focus-visible,
.smt .smt-btn--primary:active {
	background-color: var(--smt-blue-deep);
	border-color: var(--smt-blue-deep);
	color: #fff;
}

/* Outline — dark label on paper */
.smt .smt-btn--outline,
.smt .smt-btn--outline:link,
.smt .smt-btn--outline:visited {
	background-color: transparent;
	color: var(--smt-ink);
	border-color: var(--smt-line);
}
.smt .smt-btn--outline:hover,
.smt .smt-btn--outline:focus,
.smt .smt-btn--outline:focus-visible,
.smt .smt-btn--outline:active {
	background-color: var(--smt-paper);
	border-color: var(--smt-ink);
	color: var(--smt-ink);
}

/* Ghost — quiet, but never faint enough to disappear */
.smt .smt-btn--ghost,
.smt .smt-btn--ghost:link,
.smt .smt-btn--ghost:visited {
	background-color: transparent;
	color: var(--smt-ink-soft);
	border-color: transparent;
}
.smt .smt-btn--ghost:hover,
.smt .smt-btn--ghost:focus,
.smt .smt-btn--ghost:focus-visible,
.smt .smt-btn--ghost:active {
	background-color: var(--smt-tint);
	color: var(--smt-ink);
	border-color: transparent;
}

/* Invert — amber fill on dark sections, dark label on both states */
.smt .smt-btn--invert,
.smt .smt-btn--invert:link,
.smt .smt-btn--invert:visited {
	background-color: var(--smt-amber);
	color: var(--smt-ink);
	border-color: var(--smt-amber);
}
.smt .smt-btn--invert:hover,
.smt .smt-btn--invert:focus,
.smt .smt-btn--invert:focus-visible,
.smt .smt-btn--invert:active {
	background-color: #FFC260;
	border-color: #FFC260;
	color: var(--smt-ink);
}

.smt .smt-btn--lg { font-size: 15.5px; padding: 15px 26px; border-radius: 12px; }
.smt .smt-btn--block { display: flex; width: 100%; }
.smt /* Links elsewhere on the page also need their hover stated */
.smt .smt-nav > a:link,
.smt .smt-nav > a:visited { color: var(--smt-muted); }
.smt .smt-nav > a:hover,
.smt .smt-nav > a:focus { color: var(--smt-ink); }

.smt .smt-footer__nav a:link,
.smt .smt-footer__nav a:visited { color: rgba(255, 255, 255, .68); }
.smt .smt-footer__nav a:hover,
.smt .smt-footer__nav a:focus { color: #fff; }

.smt .smt-brand:link,
.smt .smt-brand:visited,
.smt .smt-brand:hover { text-decoration: none; }
.smt .smt-brand:hover .smt-brand__logo { opacity: .82; }
.smt .smt-brand__logo { transition: opacity .18s ease; }

/* ----------------------------------------------------------------- burger */

.smt-burger {
	display: none;
	width: 40px;
	height: 40px;
	background: var(--smt-paper);
	border: 1px solid var(--smt-line);
	border-radius: 10px;
	cursor: pointer;
	padding: 0;
	position: relative;
}
.smt-burger span {
	position: absolute;
	inset-inline-start: 11px;
	width: 16px;
	height: 1.8px;
	background: var(--smt-ink);
	border-radius: 2px;
	transition: transform .25s ease, opacity .2s ease;
}
.smt-burger span:nth-child(1) { top: 14px; }
.smt-burger span:nth-child(2) { top: 19px; }
.smt-burger span:nth-child(3) { top: 24px; }
.smt-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.smt-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.smt-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ------------------------------------------------------------------- hero */

.smt-hero {
	position: relative;
	padding-top: clamp(48px, 6vw, 84px);
	background:
		radial-gradient(120% 90% at 85% 0%, var(--smt-blue-wash) 0%, transparent 58%),
		var(--smt-bg);
}

.smt-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: clamp(30px, 5vw, 64px);
	align-items: center;
	padding-bottom: clamp(48px, 6vw, 80px);
}

.smt-eyebrow {
	font-family: var(--smt-mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--smt-blue);
	margin-bottom: 16px;
}
.smt[dir="rtl"] .smt-eyebrow {
	font-family: var(--smt-body);
	letter-spacing: 0;
	text-transform: none;
	font-size: 13.5px;
	font-weight: 600;
}

.smt-hero__title {
	font-family: var(--smt-display);
	font-size: clamp(38px, 6vw, 62px);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -.032em;
	margin-bottom: 20px;
	text-wrap: balance;
	isolation: isolate;
}
.smt[dir="rtl"] .smt-hero__title { line-height: 1.25; letter-spacing: 0; }

.smt-hero__title em {
	font-style: normal;
	position: relative;
	color: var(--smt-blue-deep);
	white-space: nowrap;
}
.smt-hero__title em::after {
	content: "";
	position: absolute;
	inset-inline: -2px;
	bottom: .06em;
	height: .3em;
	background: var(--smt-amber);
	opacity: .35;
	border-radius: 2px;
	z-index: -1;
}

.smt-hero__sub {
	font-size: clamp(16px, 1.6vw, 18.5px);
	color: var(--smt-muted);
	max-width: 54ch;
	margin-bottom: 30px;
}

.smt-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 18px;
}

.smt-hero__note {
	font-family: var(--smt-mono);
	font-size: 12.5px;
	color: var(--smt-muted);
	letter-spacing: .01em;
}
.smt[dir="rtl"] .smt-hero__note { font-family: var(--smt-body); font-size: 13.5px; }

/* -------------------------------------------- signature: printing receipt */

.smt-hero__visual {
	display: flex;
	justify-content: center;
	perspective: 1200px;
}

.smt-printer {
	position: relative;
	width: min(340px, 100%);
	padding-top: 30px;
}

.smt-printer__body {
	position: relative;
	height: 54px;
	border-radius: 16px 16px 6px 6px;
	background: linear-gradient(180deg, #16324b 0%, #0B1B2B 100%);
	box-shadow: var(--smt-shadow-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}
.smt-printer__slot {
	width: 78%;
	height: 6px;
	border-radius: 3px;
	background: #04101c;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .8);
}
.smt-printer__led {
	position: absolute;
	top: 12px;
	inset-inline-end: 16px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--smt-amber);
	box-shadow: 0 0 10px var(--smt-amber);
	animation: smt-blink 2.4s ease-in-out infinite;
}
@keyframes smt-blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.smt-receipt {
	position: relative;
	margin-top: -4px;
	background: var(--smt-paper);
	font-family: var(--smt-mono);
	font-size: 13px;
	line-height: 1.55;
	color: var(--smt-ink);
	padding: 22px 20px 30px;
	box-shadow: var(--smt-shadow-lg);
	z-index: 2;
	animation: smt-print 1s cubic-bezier(.22, .8, .3, 1) .15s both;
	transform-origin: top center;
}
.smt[dir="rtl"] .smt-receipt { font-family: var(--smt-body); font-size: 13.5px; }

@keyframes smt-print {
	from { clip-path: inset(0 0 100% 0); transform: translateY(-6px); }
	to   { clip-path: inset(0 0 0 0); transform: translateY(0); }
}

.smt-receipt__tear {
	position: absolute;
	inset-inline: 0;
	bottom: -3px;
	width: 100%;
	height: 5px;
	fill: var(--smt-paper);
	filter: drop-shadow(0 3px 3px rgba(11, 27, 43, .12));
}

.smt-receipt__head { text-align: center; margin-bottom: 12px; }
.smt-receipt__head strong {
	display: block;
	font-weight: 600;
	letter-spacing: .04em;
	font-size: 13.5px;
}
.smt-receipt__head span { font-size: 11.5px; color: var(--smt-muted); }

.smt-receipt__rule {
	border-top: 1px dashed var(--smt-line);
	margin: 10px 0;
}

.smt-receipt__line {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding-block: 2px;
	animation: smt-line-in .4s ease both;
	animation-delay: calc(.6s + var(--i, 0) * .09s);
}
.smt-receipt__line[data-line="1"] { --i: 1; }
.smt-receipt__line[data-line="2"] { --i: 2; }
.smt-receipt__line[data-line="3"] { --i: 3; }
.smt-receipt__line[data-line="4"] { --i: 4; }
.smt-receipt__line[data-line="5"] { --i: 5; }
.smt-receipt__line[data-line="6"] { --i: 6; }
.smt-receipt__line[data-line="7"] { --i: 7; }

@keyframes smt-line-in {
	from { opacity: 0; transform: translateY(-4px); }
	to   { opacity: 1; transform: translateY(0); }
}

.smt-receipt__line--muted { color: var(--smt-muted); font-size: 12px; }
.smt-receipt__num { font-family: var(--smt-mono); font-variant-numeric: tabular-nums; direction: ltr; }

.smt-receipt__total {
	font-size: 15px;
	font-weight: 600;
	border-top: 2px solid var(--smt-ink);
	border-bottom: 2px solid var(--smt-ink);
	padding-block: 7px;
	margin-block: 8px;
}
.smt-receipt__total .smt-receipt__num { color: var(--smt-blue-deep); }

.smt-receipt__barcode {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 2px;
	height: 34px;
	margin-top: 16px;
	animation: smt-line-in .4s ease both;
	animation-delay: 1.4s;
}
.smt-receipt__barcode i {
	width: 2px;
	height: 100%;
	background: var(--smt-ink);
	display: block;
}
.smt-receipt__barcode i:nth-child(3n) { width: 4px; }
.smt-receipt__barcode i:nth-child(4n) { height: 74%; }
.smt-receipt__barcode i:nth-child(5n) { width: 1px; }

.smt-receipt__foot {
	text-align: center;
	font-size: 11px;
	color: var(--smt-muted);
	margin-top: 8px;
	animation: smt-line-in .4s ease both;
	animation-delay: 1.5s;
}

/* ----------------------------------------------------- category chip rail */

.smt-cats {
	border-top: 1px solid var(--smt-line);
	border-bottom: 1px solid var(--smt-line);
	background: var(--smt-paper);
	padding-block: 22px;
}
.smt-cats__label {
	font-family: var(--smt-mono);
	font-size: 11.5px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--smt-muted);
	margin-bottom: 14px;
}
.smt[dir="rtl"] .smt-cats__label {
	font-family: var(--smt-body);
	letter-spacing: 0;
	text-transform: none;
	font-size: 13px;
}

.smt-cats__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.smt-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--smt-ink-soft);
	background: var(--smt-tint);
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 7px 15px;
	transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.smt-chip:hover { background: var(--smt-blue-wash); color: var(--smt-blue-deep); }

.smt-chip--open {
	background: transparent;
	border: 1px dashed var(--smt-blue);
	color: var(--smt-blue);
	font-weight: 600;
}
.smt-chip--open .smt-icon { font-size: 14px; }

/* --------------------------------------------------------------- sections */

.smt-section { padding-block: var(--smt-section-y); }
.smt-section--tint { background: var(--smt-tint); }

.smt-section--dark {
	background: var(--smt-ink);
	color: #fff;
}
.smt-section--dark .smt-eyebrow { color: var(--smt-amber); }
.smt-section--dark .smt-head__sub { color: var(--smt-muted-dark); }

.smt-head {
	max-width: 620px;
	margin-inline: auto;
	margin-bottom: clamp(34px, 4vw, 54px);
	text-align: center;
}
.smt-head--start {
	margin-inline: 0;
	text-align: start;
	max-width: 460px;
	margin-bottom: 26px;
}

.smt-h2 {
	font-family: var(--smt-display);
	font-size: clamp(27px, 3.4vw, 40px);
	font-weight: 700;
	line-height: 1.13;
	letter-spacing: -.028em;
	text-wrap: balance;
}
.smt-h3 {
	font-family: var(--smt-display);
	font-size: clamp(22px, 2.4vw, 28px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -.02em;
}
.smt[dir="rtl"] .smt-h2,
.smt[dir="rtl"] .smt-h3 { letter-spacing: 0; line-height: 1.35; }

.smt-head__sub {
	margin-top: 14px;
	color: var(--smt-muted);
	font-size: 16.5px;
}

/* ------------------------------------------------------------------ cards */

.smt-grid { display: grid; gap: var(--smt-gap); }
.smt-grid--4 { grid-template-columns: repeat(4, 1fr); }
.smt-grid--3 { grid-template-columns: repeat(3, 1fr); }

.smt-card {
	background: var(--smt-paper);
	border: 1px solid var(--smt-line-soft);
	border-radius: var(--smt-radius);
	padding: 26px 22px;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.smt-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--smt-shadow);
	border-color: var(--smt-line);
}

.smt-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 11px;
	background: var(--smt-blue-wash);
	color: var(--smt-blue-deep);
	font-size: 21px;
	margin-bottom: 16px;
}

.smt-card__title {
	font-family: var(--smt-display);
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -.012em;
	line-height: 1.3;
	margin-bottom: 8px;
}
.smt[dir="rtl"] .smt-card__title { letter-spacing: 0; }

.smt-card__text {
	font-size: 14.8px;
	color: var(--smt-muted);
	line-height: 1.62;
}

.smt-card--dark {
	background: var(--smt-ink-soft);
	border-color: rgba(255, 255, 255, .09);
}
.smt-card--dark:hover { border-color: rgba(255, 255, 255, .2); }
.smt-card--dark .smt-card__icon { background: rgba(242, 169, 59, .14); color: var(--smt-amber); }
.smt-card--dark .smt-card__text { color: var(--smt-muted-dark); }

.smt-card--flat { background: transparent; border-color: var(--smt-line); }
.smt-card--flat:hover { background: var(--smt-paper); }

/* ------------------------------------------------------------ split + list */

.smt-split {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	gap: clamp(28px, 5vw, 66px);
	align-items: start;
}

.smt-list { display: grid; gap: 4px; }

.smt-list__item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 18px 16px;
	border-radius: var(--smt-radius);
	transition: background .2s ease;
}
.smt-list__item:hover { background: var(--smt-paper); }

.smt-list__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex: none;
	border-radius: 10px;
	background: var(--smt-blue-wash);
	color: var(--smt-blue-deep);
	font-size: 19px;
}
.smt-list__title {
	font-family: var(--smt-display);
	font-size: 16.5px;
	font-weight: 600;
	margin-bottom: 4px;
}
.smt-list__text { font-size: 14.8px; color: var(--smt-muted); }

/* mini bar chart, purely decorative but honest about the shape of a week */
.smt-bars {
	display: flex;
	align-items: flex-end;
	gap: 9px;
	height: 108px;
	margin-top: 30px;
	padding: 16px 18px;
	background: var(--smt-paper);
	border: 1px solid var(--smt-line-soft);
	border-radius: var(--smt-radius);
}
.smt-bars i {
	display: block;
	flex: 1;
	height: var(--h);
	min-height: 6px;
	border-radius: 4px 4px 2px 2px;
	background: linear-gradient(180deg, var(--smt-blue) 0%, var(--smt-blue-deep) 100%);
	opacity: .28;
	transform-origin: bottom;
	animation: smt-bar-grow .7s cubic-bezier(.2, .8, .3, 1) both;
}
.smt-bars i:nth-child(1) { animation-delay: .02s; }
.smt-bars i:nth-child(2) { animation-delay: .08s; }
.smt-bars i:nth-child(3) { animation-delay: .14s; }
.smt-bars i:nth-child(4) { animation-delay: .2s; opacity: 1; }
.smt-bars i:nth-child(5) { animation-delay: .26s; }
.smt-bars i:nth-child(6) { animation-delay: .32s; opacity: 1; background: linear-gradient(180deg, var(--smt-amber) 0%, var(--smt-amber-deep) 100%); }
.smt-bars i:nth-child(7) { animation-delay: .38s; }

@keyframes smt-bar-grow { from { transform: scaleY(.05); } to { transform: scaleY(1); } }

/* ---------------------------------------------------------------- pricing */

.smt-price {
	position: relative;
	max-width: 430px;
	margin-inline: auto;
	filter: drop-shadow(0 26px 50px rgba(11, 27, 43, .16));
}
.smt-price__inner {
	background: var(--smt-paper);
	border-radius: 16px 16px 0 0;
	padding: 34px 30px 30px;
	border: 1px solid var(--smt-line-soft);
	border-bottom: 0;
}
.smt-price__tear {
	display: block;
	width: 100%;
	height: 6px;
	fill: var(--smt-paper);
	margin-top: -1px;
}

.smt-price__plan {
	font-family: var(--smt-mono);
	font-size: 12px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--smt-muted);
}
.smt[dir="rtl"] .smt-price__plan {
	font-family: var(--smt-body);
	letter-spacing: 0;
	text-transform: none;
	font-size: 13.5px;
}

.smt-price__amount {
	display: flex;
	align-items: baseline;
	gap: 9px;
	margin-top: 8px;
	font-family: var(--smt-display);
	font-size: clamp(34px, 4.4vw, 46px);
	font-weight: 700;
	letter-spacing: -.03em;
	line-height: 1.1;
	color: var(--smt-ink);
}
.smt-price__amount small {
	font-family: var(--smt-body);
	font-size: 14.5px;
	font-weight: 500;
	letter-spacing: 0;
	color: var(--smt-muted);
}

.smt-price__rule {
	border-top: 1px dashed var(--smt-line);
	margin: 22px 0;
}

.smt-price__features {
	display: grid;
	gap: 11px;
	margin-bottom: 26px;
}
.smt-price__features li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 14.8px;
}
.smt-price__features .smt-icon {
	font-size: 17px;
	color: var(--smt-blue);
	margin-top: 3px;
	stroke-width: 2.2;
}

.smt-price__note {
	margin-top: 14px;
	text-align: center;
	font-size: 13px;
	color: var(--smt-muted);
}

/* -------------------------------------------------------------------- why */

.smt-why { display: grid; gap: 14px; }
.smt-why li {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	font-size: 15.5px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--smt-line-soft);
}
.smt-why li:last-child { border-bottom: 0; padding-bottom: 0; }
.smt-why .smt-icon {
	font-size: 18px;
	color: var(--smt-amber-deep);
	margin-top: 3px;
	stroke-width: 2.2;
	flex: none;
}

.smt-sec { margin-top: clamp(48px, 6vw, 84px); }
.smt-sec .smt-head { max-width: none; }

/* -------------------------------------------------------------------- faq */

.smt-faq {
	background: var(--smt-paper);
	border: 1px solid var(--smt-line-soft);
	border-radius: var(--smt-radius-lg);
	overflow: hidden;
}
.smt-faq__item + .smt-faq__item { border-top: 1px solid var(--smt-line-soft); }

.smt .smt-faq__q {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	font-family: var(--smt-display);
	font-size: 16.5px;
	font-weight: 600;
	color: var(--smt-ink);
	text-align: start;
	padding: 20px 24px;
	transition: background-color .18s ease, color .18s ease;
}
.smt[dir="rtl"] .smt-faq__q { font-family: var(--smt-body); }

/* amber marker on the open question */
.smt .smt-faq__q::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: 10px;
	bottom: 10px;
	width: 3px;
	border-radius: 3px;
	background-color: var(--smt-amber);
	opacity: 0;
	transition: opacity .2s ease;
}

.smt .smt-faq__q:hover,
.smt .smt-faq__q:focus-visible {
	background-color: var(--smt-blue-wash);
	color: var(--smt-blue-deep);
}
.smt .smt-faq__q:active { background-color: #D8E6F5; }

.smt .smt-faq__q[aria-expanded="true"] {
	background-color: var(--smt-tint);
	color: var(--smt-blue-deep);
}
.smt .smt-faq__q[aria-expanded="true"]:hover { background-color: var(--smt-blue-wash); }
.smt .smt-faq__q[aria-expanded="true"]::before { opacity: 1; }

.smt-faq__sign {
	position: relative;
	width: 15px;
	height: 15px;
	flex: none;
}
.smt-faq__sign::before,
.smt-faq__sign::after {
	content: "";
	position: absolute;
	background-color: var(--smt-blue);
	border-radius: 2px;
	transition: transform .25s ease, opacity .25s ease, background-color .18s ease;
}
.smt-faq__sign::before { inset-inline: 0; top: 6.6px; height: 1.8px; }
.smt-faq__sign::after { inset-block: 0; inset-inline-start: 6.6px; width: 1.8px; }

.smt .smt-faq__q:hover .smt-faq__sign::before,
.smt .smt-faq__q:hover .smt-faq__sign::after { background-color: var(--smt-blue-deep); }

.smt .smt-faq__q[aria-expanded="true"] .smt-faq__sign::before { background-color: var(--smt-amber-deep); }
.smt .smt-faq__q[aria-expanded="true"] .smt-faq__sign::after { transform: rotate(90deg); opacity: 0; }

.smt-faq__a {
	padding: 0 24px 22px;
	background-color: var(--smt-tint);
}
.smt-faq__a p {
	font-size: 15px;
	color: var(--smt-muted);
	max-width: 62ch;
	padding-top: 2px;
}

/* -------------------------------------------------------------- final cta */

.smt-final {
	background:
		radial-gradient(90% 140% at 50% 0%, var(--smt-blue-deep) 0%, transparent 70%),
		var(--smt-ink);
	color: #fff;
	padding-block: clamp(56px, 7vw, 92px);
	text-align: center;
}
.smt-final__inner p {
	margin: 16px auto 28px;
	max-width: 46ch;
	color: rgba(255, 255, 255, .74);
	font-size: 16.5px;
}

/* ------------------------------------------------------------------- form */

.smt-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	background: var(--smt-paper);
	border: 1px solid var(--smt-line-soft);
	border-radius: var(--smt-radius-lg);
	padding: 15px !important;
	box-shadow: var(--smt-shadow);
}
.smt-field--full { grid-column: 1 / -1; }

.smt-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--smt-ink);
	margin-bottom: 7px;
}

.smt-field input,
.smt-field textarea {
	width: 100%;
	font-family: inherit;
	font-size: 15px;
	color: var(--smt-ink);
	background: var(--smt-bg);
	border: 1px solid var(--smt-line);
	border-radius: 10px;
	padding: 12px 14px;
	transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.smt-field textarea { resize: vertical; min-height: 120px; }
.smt-field input::placeholder,
.smt-field textarea::placeholder { color: #9AAABA; }
.smt-field input:focus,
.smt-field textarea:focus {
	outline: none;
	background: var(--smt-paper);
	border-color: var(--smt-blue);
	box-shadow: 0 0 0 3px rgba(22, 104, 179, .14);
}
.smt-field.has-error input,
.smt-field.has-error textarea { border-color: #C6403A; }

.smt-hp {
	position: absolute;
	inset-inline-start: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.smt-form__foot {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 4px;
	padding-top: 20px;
	border-top: 1px solid var(--smt-line-soft);
}
.smt-form__status { font-size: 14px; color: var(--smt-muted); }
.smt-form__status.is-ok { color: #1B7A4B; font-weight: 600; }
.smt-form__status.is-err { color: #C6403A; font-weight: 600; }

/* ----------------------------------------------------------------- footer */

.smt-footer {
	background: var(--smt-ink);
	color: rgba(255, 255, 255, .68);
	padding-block: 44px;
	font-size: 14.5px;
}
.smt-footer__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	align-items: flex-start;
	justify-content: space-between;
}
.smt-footer__brand { max-width: 320px; }
.smt-footer__nav { display: flex; flex-wrap: wrap; gap: 20px; }
.smt-footer__nav a { transition: color .18s ease; }
.smt-footer__nav a:hover { color: #fff; }
.smt-footer__legal { width: 100%; font-size: 13px; color: rgba(255, 255, 255, .45); padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); }

/* --------------------------------------------------------- scroll reveals */

.smt-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .55s ease, transform .55s cubic-bezier(.2, .8, .3, 1);
}
.smt-reveal.is-in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ breakpoints */

@media (max-width: 1080px) {
	.smt-nav { gap: 18px; }
	.smt-header__actions { margin-inline-start: 12px; }
}

@media (max-width: 980px) {
	.smt-hero__grid { grid-template-columns: 1fr; }
	.smt-hero__visual { order: -1; margin-bottom: 8px; }
	.smt-printer { width: min(300px, 100%); }
	.smt-split { grid-template-columns: 1fr; }
	.smt-head--start { max-width: none; }
	.smt-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	.smt-header__login { display: none; }

	.smt-burger { display: block; }

	.smt-nav {
		position: fixed;
		inset: 68px 0 auto 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--smt-paper);
		border-bottom: 1px solid var(--smt-line);
		padding: 12px 22px 22px;
		margin: 0;
		box-shadow: var(--smt-shadow);
		max-height: calc(100dvh - 68px);
		overflow-y: auto;
		transform: translateY(-8px);
		opacity: 0;
		visibility: hidden;
		transition: opacity .2s ease, transform .2s ease, visibility .2s;
		font-size: 16px;
	}
	.smt-nav.is-open { opacity: 1; visibility: visible; transform: none; }
	.smt-nav > a {
		padding: 14px 2px;
		border-bottom: 1px solid var(--smt-line-soft);
		color: var(--smt-ink);
		font-weight: 600;
	}
	.smt-nav > a::after { display: none; }

	.smt-nav__mobile-actions {
		display: grid;
		gap: 10px;
		margin-top: 18px;
	}
	.smt-nav__mobile-actions .smt-btn { width: 100%; padding-block: 14px; }
	.smt .smt-nav__mobile-actions .smt-btn--ghost,
	.smt .smt-nav__mobile-actions .smt-btn--ghost:link,
	.smt .smt-nav__mobile-actions .smt-btn--ghost:visited,
	.smt .smt-nav__mobile-actions .smt-btn--ghost:hover,
	.smt .smt-nav__mobile-actions .smt-btn--ghost:focus {
		border: 1px solid var(--smt-line);
		color: var(--smt-ink);
		background-color: transparent;
	}

	.smt-header__cta { display: none; }

	.smt.is-locked { overflow: hidden; }
}

@media (max-width: 720px) {
	.smt-grid--3 { grid-template-columns: 1fr; }
	.smt-form { grid-template-columns: 1fr; }
	.smt-footer__inner { flex-direction: column; }
}

@media (max-width: 560px) {
	.smt-brand__logo { height: 22px; }
	.smt-grid--4 { grid-template-columns: 1fr; }
	.smt-shell { padding-inline: 18px; }
	.smt-hero__cta { flex-direction: column; align-items: stretch; }
	.smt-hero__cta .smt-btn { width: 100%; }
	.smt-hero__note { font-size: 12px; }
	.smt-faq__q { padding: 17px 18px; font-size: 15.5px; }
	.smt-faq__a { padding: 0 18px 18px; }
	.smt-list__item { padding: 14px 10px; }
	.smt-price__inner { padding: 28px 22px 26px; }
	.smt-form { gap: 18px; }
	.smt-form__foot .smt-btn { width: 100%; }
	.smt-form__status { width: 100%; text-align: center; }
}

/* --------------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
	.smt *,
	.smt *::before,
	.smt *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
	.smt-reveal { opacity: 1; transform: none; }
	.smt-receipt { clip-path: none; }
}

/* ----------------------------------------------------------------- print */

@media print {
	.smt-header, .smt-burger, .smt-final, .smt-form { display: none; }
	.smt { background: #fff; }
}
