:root {
  --gold: #f5b301;
  --gold-dark: #d99e00;
  --ink: #0f0f0f;
  --muted: #66645f;
  --line: rgba(15, 15, 15, .1);
  --soft: #f7f5ef;
  --panel: #ffffff;
  --danger: #b42318;
  --ok: #067647;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  direction: rtl;
  font-family: Tajawal, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}

.topbar__inner,
.header__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__links,
.header__nav,
.social-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar__pill,
.icon-chip {
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  font-weight: 800;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  direction: ltr;
}

.brand__logo {
  display: block;
  width: clamp(158px, 17vw, 254px);
  height: auto;
}

.header__nav a {
  font-weight: 800;
  color: #1f1f1f;
  padding: 10px 8px;
}

.header__nav a:hover {
  color: var(--gold-dark);
}

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

.searchbox {
  width: min(320px, 34vw);
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 18px;
  color: var(--ink);
  background: #f9f9f8;
  font: inherit;
}

.btn,
.btn-outline,
.btn-dark,
.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 12px;
  padding: 11px 20px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border .2s ease;
}

.btn:hover,
.btn-outline:hover,
.btn-dark:hover,
.btn-soft:hover {
  transform: translateY(-1px);
}

.btn {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 24px rgba(245, 179, 1, .24);
}

.btn:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-soft {
  background: #fff8dc;
  border-color: rgba(245, 179, 1, .35);
  color: #342400;
}

.section {
  padding: 70px 0;
}

.section--soft {
  background: linear-gradient(180deg, #fff 0%, #f6f5f1 100%);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(245, 179, 1, .55);
  color: #9a7000;
  background: rgba(245, 179, 1, .08);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
}

.title {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.2;
  font-weight: 950;
}

.title span {
  color: var(--gold-dark);
}

.subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin: 14px 0 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f5f4ef 54%, #fff 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 15, 15, .08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .35;
}

.hero__inner {
  position: relative;
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 54px;
  padding: 58px 0 76px;
  direction: ltr;
}

.hero__visual {
  position: relative;
  height: 520px;
  overflow: visible;
  direction: rtl;
}

.hero__content {
  direction: rtl;
}

.hero__halo {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 999px;
  background: rgba(245, 179, 1, .28);
  filter: blur(46px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.globe {
  position: absolute;
  width: 210px;
  height: 210px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.globe svg {
  width: 100%;
  height: 100%;
}

.pin {
  position: absolute;
  width: 54px;
  height: 54px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -120%);
  z-index: 5;
  filter: drop-shadow(0 9px 11px rgba(0, 0, 0, .45));
}

.pin__pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(245, 179, 1, .42);
  animation: ping 2.6s infinite;
}

.pin__shape {
  position: absolute;
  inset: 2px;
  border-radius: 999px 999px 999px 0;
  background: var(--ink);
  box-shadow: 0 0 0 3px var(--gold);
  transform: rotate(-45deg);
  overflow: hidden;
}

.pin__shape img {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  margin: 5px;
  border-radius: 999px;
  object-fit: cover;
  transform: rotate(45deg);
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  border: 1.5px dashed rgba(245, 179, 1, .38);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.orbit--1 {
  width: 300px;
  height: 300px;
  animation: spinC 26s linear infinite;
}

.orbit--2 {
  width: 390px;
  height: 390px;
  animation: spinCC 40s linear infinite;
  border-color: rgba(245, 179, 1, .28);
}

.orbit--3 {
  width: 470px;
  height: 470px;
  animation: spinC 54s linear infinite;
  border-color: rgba(245, 179, 1, .22);
}

.flag {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 22px -6px rgba(0, 0, 0, .4), 0 0 0 2px #fff;
}

.flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flag--jordan img,
.flag--turkey img {
  object-position: 28% center;
}

.orbit--1 .flag {
  animation: orbitR 26s linear infinite;
}

.orbit--2 .flag {
  animation: orbit 40s linear infinite;
}

.orbit--3 .flag {
  animation: orbitR 54s linear infinite;
}

.flag--top {
  left: 50%;
  top: -23px;
  transform: translateX(-50%);
}

.flag--bottom {
  left: 50%;
  bottom: -23px;
  transform: translateX(-50%);
}

.flag--right {
  right: -23px;
  top: 44%;
}

.flag--left {
  left: -23px;
  top: 42%;
}

.hero__tag {
  position: absolute;
  left: 60px;
  bottom: 58px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  z-index: 7;
  animation: floaty 6s ease-in-out infinite;
}

.hero__tag::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--gold);
  animation: pulseDot 1.8s infinite;
}

.hero__copy {
  position: relative;
  min-height: 340px;
}

.hero__slide {
  position: absolute;
  inset-inline: 0;
  top: 0;
  opacity: 0;
  transform: translateY(16px);
  animation: rot3 15s ease-in-out infinite both;
}

.hero__slide:nth-child(2) {
  animation-delay: 5s;
}

.hero__slide:nth-child(3) {
  animation-delay: 10s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__stats {
  border-top: 1px solid var(--line);
  margin-top: 42px;
  padding-top: 28px;
  display: flex;
  justify-content: flex-start;
  gap: 42px;
}

.stat {
  min-width: 92px;
}

.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 950;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
}

.app-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 8px 14px;
  font-weight: 900;
  min-height: 44px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
}

.store-badge::after {
  content: "";
  position: absolute;
  inset: -60% auto auto -25%;
  width: 70px;
  height: 170px;
  transform: rotate(25deg);
  background: rgba(255, 255, 255, .22);
  animation: badgeSweep 4.8s ease-in-out infinite;
}

.store-badge__icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(245, 179, 1, .16);
  color: var(--gold);
  font-size: 18px;
}

.store-badge small {
  display: block;
  color: #d9d9d9;
  font-size: 11px;
  line-height: 1;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.product-card,
.company-card,
.package-card,
.admin-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(15, 15, 15, .05);
}

.category-card {
  min-height: 170px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card__icon {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  background: #fff8dc;
  border: 1px solid rgba(245, 179, 1, .25);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.category-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__image {
  aspect-ratio: 1;
  background: #f7f5ef;
  position: relative;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.company-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__watermark,
.detail-media__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 62%;
  max-width: 360px;
  height: auto;
  opacity: .12;
  filter: saturate(1.08);
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.detail-media__watermark {
  width: 58%;
  opacity: .14;
}

.product-card__body,
.company-card__body,
.package-card {
  padding: 18px;
}

.product-card h3,
.company-card h3,
.category-card h3,
.package-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.meta {
  color: var(--muted);
  margin-top: 8px;
  font-weight: 700;
}

.company-card__cover {
  height: 118px;
  background: linear-gradient(120deg, #111, #3b3b3b);
}

.company-card__logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px;
  margin-top: -44px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.package-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.package-card--basic {
  background: #fff;
}

.package-card--silver {
  background: linear-gradient(180deg, #fff, #f0f1f2);
}

.package-card--gold {
  background: linear-gradient(180deg, #fff8dd, #fff);
  border-color: rgba(245, 179, 1, .5);
}

.package-card--diamond {
  background: linear-gradient(160deg, #111, #242424);
  color: #fff;
  border-color: #3d3d3d;
}

.package-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.package-card li {
  display: flex;
  align-items: start;
  gap: 10px;
  color: inherit;
}

.package-card li::before {
  content: "✓";
  color: var(--ok);
  font-weight: 950;
}

.package-card .muted::before {
  content: "×";
  color: var(--danger);
}

.package-card .muted {
  color: #8b8b8b;
}

.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.app-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: center;
  gap: 28px;
  min-height: 330px;
  padding: 38px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 179, 1, .42), transparent 28%),
    radial-gradient(circle at 83% 76%, rgba(255, 255, 255, .16), transparent 24%),
    linear-gradient(135deg, #0b0b0b 0%, #151515 58%, #2b2102 100%);
  box-shadow: 0 30px 70px rgba(15, 15, 15, .16);
}

.app-cta::before,
.app-cta::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(245, 179, 1, .35);
  border-radius: 999px;
  pointer-events: none;
}

.app-cta::before {
  width: 420px;
  height: 420px;
  right: -130px;
  top: -120px;
  animation: spinSoft 36s linear infinite;
}

.app-cta::after {
  width: 260px;
  height: 260px;
  left: -70px;
  bottom: -90px;
  animation: spinSoft 24s linear infinite reverse;
}

.app-cta__copy,
.app-cta__visual {
  position: relative;
  z-index: 2;
}

.app-cta .title {
  color: #fff;
  max-width: 760px;
}

.app-cta .subtitle {
  color: rgba(255, 255, 255, .72);
  max-width: 660px;
}

.app-cta__visual {
  min-height: 260px;
  display: grid;
  place-items: center;
}

.app-phone {
  position: relative;
  width: 190px;
  height: 275px;
  padding: 16px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #e9e9e9);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .36), inset 0 0 0 7px #111;
  transform: rotate(-6deg);
  animation: floaty 5.5s ease-in-out infinite;
}

.app-phone__bar {
  width: 58px;
  height: 6px;
  border-radius: 999px;
  background: #111;
  margin: 0 auto 12px;
}

.app-phone__screen {
  height: 222px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff7d8, #fff);
  color: var(--ink);
  padding: 18px 14px;
  display: grid;
  gap: 9px;
  align-content: start;
}

.app-phone__screen span {
  color: var(--gold-dark);
  font-weight: 950;
  font-size: 12px;
}

.app-phone__screen strong {
  font-size: 48px;
  line-height: 1;
}

.app-phone__screen small {
  color: var(--muted);
  font-weight: 800;
}

.app-phone__screen div {
  height: 26px;
  border-radius: 10px;
  background: rgba(15, 15, 15, .08);
}

.app-cta__spark {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(245, 179, 1, .34);
  z-index: 3;
}

.app-cta__spark--one {
  right: 18%;
  top: 14%;
  animation: popFloat 4s ease-in-out infinite;
}

.app-cta__spark--two {
  left: 18%;
  bottom: 20%;
  animation: popFloat 4.7s ease-in-out infinite reverse;
}

.chip-row,
.breadcrumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(245, 179, 1, .38);
  border-radius: 999px;
  padding: 7px 13px;
  background: #fff8dc;
  color: #5f4300;
  font-weight: 900;
  font-size: 14px;
}

.detail-section {
  background: linear-gradient(180deg, #fff, #faf9f5);
}

.detail-grid,
.product-info-grid,
.company-dashboard {
  display: grid;
  grid-template-columns: minmax(340px, .95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.detail-media,
.content-panel,
.merchant-panel,
.export-contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(15, 15, 15, .06);
}

.detail-media {
  padding: 18px;
  position: relative;
}

.detail-media__main {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 12px;
  border-radius: 8px;
  background: #f4f4f2;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.detail-thumbs img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.detail-copy {
  padding-top: 18px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.detail-facts div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.detail-facts span,
.merchant-card span,
.mini-metrics span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.detail-facts strong,
.detail-facts a {
  display: block;
  margin-top: 6px;
  font-weight: 950;
}

.content-panel,
.merchant-panel,
.export-contact-panel {
  padding: 24px;
}

.rich-text {
  margin-top: 18px;
  color: #3f3d38;
  font-size: 18px;
  line-height: 2;
}

.merchant-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.merchant-card img {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: contain;
  padding: 7px;
  background: #fff;
}

.merchant-card strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.merchant-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-stack a,
.contact-stack span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fafafa;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.profile-hero {
  padding: 52px 0;
  background: linear-gradient(180deg, #fff, #f7f5ef);
}

.profile-hero__inner {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
}

.profile-cover {
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #111, #3a300d);
  box-shadow: 0 24px 60px rgba(15, 15, 15, .12);
}

.profile-cover img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.profile-logo {
  width: 98px;
  height: 98px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  margin-bottom: 18px;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.mini-metrics div {
  border-radius: 8px;
  padding: 14px;
  background: #fff8dc;
  border: 1px solid rgba(245, 179, 1, .28);
}

.mini-metrics strong {
  display: block;
  font-size: 22px;
  font-weight: 950;
}

.footer {
  background: #0b0b0b;
  color: #fff;
  padding: 44px 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 26px;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 270px 1fr;
  background: #f5f5f3;
  direction: rtl;
}

.admin-sidebar {
  background: var(--ink);
  color: #fff;
  padding: 24px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-account {
  display: grid;
  gap: 3px;
  margin-top: 24px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.admin-account strong { font-size: 14px; }
.admin-account span { color: rgba(255, 255, 255, .62); font-size: 12px; overflow-wrap: anywhere; }

.admin-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.admin-sidebar a {
  padding: 12px 14px;
  border-radius: 8px;
  color: #f6f6f6;
  font-weight: 800;
}

.admin-sidebar a:hover {
  background: rgba(255, 255, 255, .09);
}

.admin-sidebar a.is-active {
  background: var(--gold);
  color: var(--ink);
}

.admin-nav-label {
  margin: 16px 8px 2px;
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
  font-weight: 800;
}

.admin-logout { margin-top: 14px; }

.admin-main {
  padding: 28px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.admin-card {
  padding: 18px;
}

.admin-card strong {
  display: block;
  font-size: 30px;
  margin-top: 8px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

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

.table th {
  color: var(--muted);
  font-size: 13px;
}

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

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

.field textarea {
  min-height: 130px;
}

@keyframes spinC {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spinCC {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitR {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes ping {
  0% {
    opacity: .6;
    transform: scale(.4);
  }
  80%, 100% {
    opacity: 0;
    transform: scale(2.6);
  }
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulseDot {
  0%, 100% {
    opacity: .5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes badgeSweep {
  0%, 70% {
    transform: translateX(0) rotate(25deg);
    opacity: 0;
  }
  82% {
    opacity: 1;
  }
  100% {
    transform: translateX(260px) rotate(25deg);
    opacity: 0;
  }
}

@keyframes spinSoft {
  to {
    transform: rotate(360deg);
  }
}

@keyframes popFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.05);
  }
}

@keyframes rot3 {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  3% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  36% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(16px);
  }
}

@media (max-width: 980px) {
  .header__nav,
  .searchbox {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 28px;
  }

  .hero__copy {
    order: -1;
    min-height: 390px;
  }

  .hero__content {
    order: -1;
  }

  .hero__visual {
    height: 420px;
  }

  .grid--4,
  .grid--3,
  .grid--2,
  .app-cta,
  .detail-grid,
  .product-info-grid,
  .company-dashboard,
  .profile-hero__inner,
  .footer__grid,
  .admin-shell,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .admin-sidebar {
    position: static;
    height: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .hero__stats,
  .section-head,
  .cta-band,
  .detail-facts,
  .topbar__inner,
  .header__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__visual {
    transform: scale(.82);
    transform-origin: center top;
    margin-bottom: -60px;
  }

  .hero__copy {
    min-height: 450px;
  }

  .detail-facts {
    grid-template-columns: 1fr;
  }

  .app-cta {
    padding: 24px;
  }

  .app-phone {
    width: 160px;
    height: 238px;
  }

  .app-phone__screen {
    height: 186px;
  }

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