html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'DM Sans', sans-serif;
  line-height: 1.5;
  color: #000;
  margin: 0;
  padding: 0;
  background-color: #fff;
  overflow-x: clip;
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 12px;
  padding: 12px 16px;
  padding-top: max(12px, env(safe-area-inset-top));
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #f0f0f0;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 1.125rem;
  min-width: 0;
}

.header-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  max-width: 36px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin-left: auto;
}

.site-nav a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  white-space: nowrap;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus {
  color: #0f766e;
  background: #f0fdfa;
}

#home,
#book,
#why,
#verify,
#about {
  scroll-margin-top: 88px;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 72px;
}

.hero-title {
  margin: 0 0 32px;
  text-align: center;
}

.ten-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px 20px;
  flex-wrap: wrap;
  font-family: Outfit, "DM Sans", sans-serif;
  text-align: left;
}

.ten-mark-dial {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0fdfa;
}

.ten-mark.is-running .ten-mark-dial {
  animation: timer-heartbeat 1.05s ease-in-out infinite;
}

.ten-mark.is-running .ten-mark-num {
  animation: timer-heartbeat-num 1.05s ease-in-out infinite;
}

.load-timer.is-heartbeat {
  animation: timer-heartbeat 1.05s ease-in-out infinite;
  transform-origin: center right;
}

@keyframes timer-heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.08); }
  28% { transform: scale(1); }
  42% { transform: scale(1.05); }
  56% { transform: scale(1); }
}

@keyframes timer-heartbeat-num {
  0%, 100% { transform: scale(1); opacity: 1; }
  14% { transform: scale(1.06); opacity: 0.85; }
  28% { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .ten-mark.is-running .ten-mark-dial,
  .ten-mark.is-running .ten-mark-num,
  .load-timer.is-heartbeat,
  .truck-image.is-driving,
  .truck-stage.is-driving::before,
  .truck-parade-track,
  .why-card,
  .booking .lead-form-container {
    animation: none !important;
  }
}

.ten-mark-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ten-mark-num {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #111;
  font-variant-numeric: tabular-nums;
  z-index: 1;
}

.ten-mark.is-waiting .ten-mark-kicker {
  color: #b45309;
}

.ten-mark-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ten-mark-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0f766e;
}

.ten-mark-line {
  display: block;
  font-size: clamp(1.55rem, 4.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #111;
}

.ten-mark-lg {
  display: flex;
  margin: 0 auto 28px;
}

.ten-mark-lg .ten-mark-dial {
  width: 96px;
  height: 96px;
}

.ten-mark-lg .ten-mark-num {
  font-size: 1.05rem;
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  gap: 40px 48px;
  align-items: start;
}

.lead-form-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 24px;
  width: 100%;
}

.lead-form-container h1,
.lead-form-container h2 {
  margin: 0 0 20px;
  font-size: 1.25rem;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-step {
  display: none;
}

.form-step.is-open {
  display: block;
  animation: step-in 0.28s ease;
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.preview.is-waiting .model-picks,
.preview.is-waiting .measure,
.preview.is-waiting .truck-caption {
  display: none;
}

.preview.is-waiting .truck-image {
  opacity: 0.55;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

.field-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.icon-load { color: #16a34a; }
.icon-unload { color: #dc2626; }
.icon-size { color: #0f766e; }
.icon-weight { color: #b45309; }
.icon-body { color: #0369a1; }
.icon-person { color: #4338ca; }
.icon-phone { color: #0f766e; }

.form-field input,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  box-sizing: border-box;
  background: #fff;
  color: #000;
  appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: #000;
}

#submit-btn[hidden] {
  display: none !important;
  position: static;
  box-shadow: none;
}

.submit-btn {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  margin-top: 8px;
  border: none;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 700;
  cursor: pointer;
}

.submit-btn:hover {
  background: #222;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  margin-top: 16px;
  padding: 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  text-align: center;
  display: none;
}

.form-message[hidden] {
  display: none !important;
}

.form-message.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
}

.form-message.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
}

.status-card h2 {
  margin: 0 0 8px;
}

.status-card.is-premium {
  border: 1px solid #99f6e4;
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 70%);
  padding: 20px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(15, 118, 110, 0.12);
}

.premium-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0f766e;
}

.route-row {
  margin-bottom: 4px;
}

.preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 88px;
}

.truck-image {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  transform-origin: center center;
}

.truck-stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  overflow: hidden;
}

.truck-parade {
  overflow: hidden;
  width: 100%;
  min-height: 168px;
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.truck-parade-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: vehicle-parade 150s linear infinite;
}

.truck-parade-item {
  margin: 0;
  flex: 0 0 auto;
}

.truck-parade-item img {
  display: block;
  height: 150px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

@keyframes vehicle-parade {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.preview.has-pick .truck-parade {
  display: none;
}

.truck-image[hidden] {
  display: none;
}

.truck-stage.is-driving::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 46%;
  height: 10px;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 14px,
    rgba(15, 118, 110, 0.22) 14px 18px
  );
  opacity: 0;
  animation: speed-wash 0.95s ease-out both;
}

.truck-image.is-driving {
  animation: truck-drive 2.7s cubic-bezier(0.2, 0.84, 0.22, 1) both;
}

@keyframes truck-drive {
  0% {
    transform: translateX(78%);
    filter: blur(0.6px);
  }
  20% {
    transform: translateX(-42%);
    filter: blur(1.1px);
  }
  36% {
    transform: translateX(12%);
    filter: blur(0);
  }
  50% {
    transform: translateX(-5%);
  }
  64% {
    transform: translateX(1.5%);
  }
  78%, 100% {
    transform: translateX(0);
    filter: none;
  }
}

@keyframes speed-wash {
  0% {
    opacity: 0;
    transform: translateX(30%);
  }
  25% {
    opacity: 0.7;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-40%);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.truck-caption {
  margin: 4px 0 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #444;
  text-align: center;
}

.truck-caption:empty,
.truck-caption[hidden] {
  display: none;
}

.measure {
  width: 100%;
  margin: 0 0 16px;
}

.measure-scale {
  position: relative;
  height: 28px;
  border-bottom: 2px solid #111;
}

.measure-fill {
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  background: #0f766e;
}

.measure-fill::before,
.measure-fill::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 12px;
  background: #0f766e;
}

.measure-fill::before { left: 0; }
.measure-fill::after { right: 0; }

.measure-value {
  position: absolute;
  top: -2px;
  left: 100%;
  transform: translate(-50%, -100%);
  background: #0f766e;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.measure-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #666;
}

.measure-slider {
  width: 100%;
  height: 44px;
  margin-top: 8px;
  accent-color: #0f766e;
}

.measure-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0f766e;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #0f766e;
}

.measure-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0f766e;
  border: 3px solid #fff;
}

.status-card.is-waiting h2 {
  color: #b45309;
}

.stopwatch.is-waiting [data-sub] {
  fill: #b45309;
}

.stopwatch {
  width: 168px;
  flex-shrink: 0;
  text-align: center;
}

.stopwatch svg {
  width: 168px;
  height: 196px;
  display: block;
}

.stopwatch-hand {
  transform-box: view-box;
  transform-origin: 100px 120px;
}

#confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  display: none;
}

#confetti.is-on {
  display: block;
}

.model-picks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 12px;
}

.model-pick {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  min-height: 44px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  color: #111;
}

.model-pick.is-active {
  background: #0f766e;
  border-color: #0f766e;
  color: #fff;
}

.vip-list {
  display: grid;
  gap: 16px;
}

.vip-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px;
}

.vip-truck {
  width: 100%;
  height: auto;
}

.vip-card-body p {
  margin: 0 0 6px;
}

.vip-timer {
  font-size: 1.25rem;
  font-weight: 700;
}

.vip-wait {
  color: #b45309;
  font-weight: 600;
}

.vip-card.is-booked {
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.vip-gate {
  max-width: 400px;
  margin: 48px auto 0;
}

.why {
  margin-top: 72px;
  padding: 40px 0 8px;
}

.section-kicker {
  margin: 0 0 8px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f766e;
}

.why h2 {
  margin: 0 auto 12px;
  max-width: 28ch;
  font-family: Outfit, "DM Sans", sans-serif;
  font-size: clamp(1.45rem, 3.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-align: center;
  color: #111;
}

.why-intro {
  margin: 0 auto 28px;
  max-width: 58ch;
  text-align: center;
  color: #444;
  font-size: 1.02rem;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 8px 0 24px;
}

.why-features.why-choose-cards {
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 28px;
}

.why-choose-cards .why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 220px;
}

.why-num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  font-family: Outfit, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0f766e;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 14px;
}

.why-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 22px 18px;
  text-align: center;
  animation: rise-in 0.55s ease both;
}

.why-features .why-card:nth-child(1) { animation-delay: 0.04s; }
.why-features .why-card:nth-child(2) { animation-delay: 0.1s; }
.why-features .why-card:nth-child(3) { animation-delay: 0.16s; }
.why-features .why-card:nth-child(4) { animation-delay: 0.22s; }

.booking .lead-form-container {
  animation: rise-in 0.45s ease both;
}

.why-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.why-coin {
  width: 40px !important;
  height: 40px !important;
  margin-left: 4px;
  vertical-align: middle;
}

.why-card h3 {
  margin: 12px 0 8px;
  font-size: 1rem;
}

.why-card p {
  margin: 0;
  color: #444;
  font-size: 0.875rem;
}

.why-savings {
  text-align: center;
  font-size: 1.05rem;
  margin: 4px auto 0;
  max-width: 54ch;
  color: #333;
  line-height: 1.55;
}

.why-cta {
  justify-content: center;
}

.about-home {
  margin-top: 56px;
}

.about-home-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.8fr);
  gap: 28px 36px;
  align-items: stretch;
  background: linear-gradient(180deg, #f7fffe 0%, #ffffff 70%);
  border: 1px solid #d7f0ec;
  border-radius: 18px;
  padding: 32px 28px;
}

.about-home-copy .section-kicker {
  text-align: left;
}

.about-home h2 {
  margin: 0 0 14px;
  font-family: Outfit, "DM Sans", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-align: left;
}

.about-home-copy > p {
  margin: 0 0 20px;
  color: #333;
  max-width: 58ch;
}

.about-path {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
}

.about-path li {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #cce8e4;
  font-weight: 700;
  font-size: 0.88rem;
  color: #115e59;
}

.about-path li:not(:last-child)::after {
  content: "→";
  margin-left: 10px;
  color: #0f766e;
  font-weight: 800;
}

.about-home-cta {
  margin-top: 4px;
}

.about-home-aside {
  display: grid;
  gap: 10px;
  align-content: center;
}

.about-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e6eeec;
  text-decoration: none;
  color: inherit;
  min-height: 72px;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.05);
}

.about-chip:hover,
.about-chip:focus {
  border-color: #0f766e;
  background: #f0fdfa;
}

.about-chip strong {
  font-size: 0.95rem;
}

.about-chip span {
  font-size: 0.85rem;
  color: #555;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 168px;
  padding: 10px 20px;
  border-radius: 10px;
  background: #0f766e;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.18);
}

.cta-btn:hover,
.cta-btn:focus {
  background: #0d9488;
}

.cta-btn-secondary {
  background: #fff;
  color: #111;
  border: 1px solid #111;
  box-shadow: none;
}

.cta-btn-secondary:hover,
.cta-btn-secondary:focus {
  background: #f8fafc;
}

@media (max-width: 1100px) {
  .why-choose-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .booking {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .preview {
    position: static;
    order: -1;
  }

  .truck-image {
    max-height: 170px;
    object-fit: contain;
    margin: 0 auto;
  }

  .form-row,
  .vip-card {
    grid-template-columns: 1fr;
  }

  .page {
    padding: 12px 14px calc(24px + env(safe-area-inset-bottom));
  }

  .lead-form-container {
    padding: 16px;
    box-shadow: none;
    border: 1px solid #eee;
  }

  .ten-mark,
  .ten-mark-lg {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .ten-mark-copy {
    align-items: center;
  }

  .ten-mark-line {
    font-size: 1.45rem;
    text-align: center;
  }

  .ten-mark-dial,
  .ten-mark-lg .ten-mark-dial {
    width: 84px;
    height: 84px;
  }

  .ten-mark-num,
  .ten-mark-lg .ten-mark-num {
    font-size: 0.95rem;
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    gap: 0 4px;
  }

  .site-nav a {
    min-height: 40px;
    padding: 6px 8px;
    font-size: 0.82rem;
  }

  header {
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
  }

  .header-brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .model-picks {
    justify-content: stretch;
    gap: 8px;
  }

  .model-pick {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .why {
    margin-top: 40px;
  }

  .why-choose-cards,
  .why-features,
  .about-home-card {
    grid-template-columns: 1fr;
  }

  .why h2 {
    max-width: none;
  }

  .about-home-card {
    padding: 22px 18px;
  }

  .about-home-copy .section-kicker,
  .about-home h2 {
    text-align: left;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
  }

  #lead-form .submit-btn {
    position: sticky;
    bottom: max(12px, env(safe-area-inset-bottom));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    z-index: 30;
  }

  .header-brand {
    font-size: 1rem;
  }

  .site-footer {
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }

  .site-footer nav {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
  }

  .vip-card {
    padding: 12px;
  }

  .profile-head {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-bar {
    max-width: none;
  }

  .load-card,
  .admin-card,
  .contact-reveal {
    overflow-wrap: anywhere;
  }

  .bid-rank li {
    flex-wrap: wrap;
  }

  .text-btn {
    align-self: flex-start;
  }
}

@media (max-width: 400px) {
  .ten-mark-line {
    font-size: 1.28rem;
  }
}

.verify-kyc {
  margin: 8px 0;
  padding-top: 8px;
}

.verify-kicker {
  text-align: center;
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

.verify-kyc .lead-form-container {
  max-width: 560px;
  margin: 0 auto;
}

.section-lead {
  margin: 0 0 20px;
  color: #444;
  font-size: 0.95rem;
}

.google-btn {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  border: 1px solid #dadce0;
  border-radius: 8px;
  background: #fff;
  color: #1f1f1f;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 700;
  cursor: pointer;
}

.google-btn:hover {
  background: #f8f9fa;
}

.google-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.google-icon {
  display: inline-flex;
}

.text-btn {
  border: 0;
  background: none;
  color: #0f766e;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
}

.profile-page h1,
.profile-page h2 {
  font-family: Outfit, sans-serif;
}

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

.profile-role {
  margin: 0;
  color: #0f766e;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.profile-email {
  margin: 4px 0 0;
  color: #555;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.detail-grid span {
  display: block;
  font-size: 0.75rem;
  color: #666;
}

.profile-section {
  margin: 28px 0;
}

.filter-bar {
  margin: 0 0 16px;
  max-width: 240px;
}

.bid-form {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.filter-bar select,
.bid-form input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  box-sizing: border-box;
}

.field-label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.field-hint {
  color: #555;
  font-size: 0.9rem;
}

.empty-note {
  color: #555;
}

.load-list {
  display: grid;
  gap: 16px;
}

.load-card-simple {
  padding: 14px 16px;
}

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

.load-card-head strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
}

.load-card-head p {
  margin: 4px 0 0;
  color: #444;
  font-size: 0.9rem;
}

.section-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 8px;
}

.section-toolbar h2 {
  margin: 0;
}

.section-toolbar .delete-btn {
  margin-top: 0;
  min-height: 44px;
  padding: 8px 4px;
}

.delete-btn:hover,
.delete-btn:focus {
  color: #991b1b;
}

.load-card-top {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 12px;
  align-items: center;
}

.load-card-top img {
  width: 96px;
  height: 64px;
  object-fit: contain;
}

.load-card-top p {
  margin: 4px 0 0;
  color: #444;
  font-size: 0.9rem;
}

.load-timer {
  font-family: Outfit, sans-serif;
  font-weight: 800;
  color: #0f766e;
  min-width: 64px;
  text-align: right;
}

.load-timer.is-booked {
  color: #16a34a;
}

.bid-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.bid-stats dt {
  font-size: 0.75rem;
  color: #666;
}

.bid-stats dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.bid-rank {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.bid-rank li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #f0f0f0;
}

.bid-rank li span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.bid-rank li.is-you {
  font-weight: 700;
}

.bid-rank li.is-you span {
  background: #0f766e;
}

.win-banner {
  margin: 12px 0;
  padding: 12px;
  border-radius: 8px;
  background: #ecfdf5;
  color: #065f46;
  font-weight: 600;
}

.success-copy {
  color: #065f46;
  font-weight: 700;
  margin-bottom: 4px;
}

.bid-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-reveal {
  padding: 12px;
  background: #f0fdfa;
  border-radius: 8px;
}

.admin-board {
  display: grid;
  gap: 14px;
}

.admin-card {
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.admin-card-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}

.admin-card-top p {
  margin: 4px 0 0;
  color: #444;
  font-size: 0.9rem;
}

.admin-stamp {
  color: #666;
  font-size: 0.8rem;
}

.admin-bids {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.admin-bid {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0 0;
  margin-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.admin-bid p {
  margin: 4px 0 0;
}

.admin-bid .submit-btn {
  width: auto;
  min-width: 132px;
  min-height: 44px;
  margin: 0;
  padding: 8px 12px;
  font-size: 0.88rem;
}

.admin-ok {
  color: #065f46;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .admin-card-top,
  .admin-bid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .admin-bid .submit-btn {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .detail-grid,
  .bid-form .form-row,
  .bid-stats,
  .load-card-top {
    grid-template-columns: 1fr;
  }

  .load-card-head {
    flex-wrap: wrap;
  }

  .load-card-head .load-timer {
    text-align: left;
  }
}

.content-page {
  max-width: 760px;
  margin: 0 auto;
}

.content-page h1 {
  font-family: Outfit, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  margin: 8px 0 16px;
  letter-spacing: -0.02em;
}

.content-page .lead {
  font-size: 1.05rem;
  color: #333;
  margin: 0 0 28px;
}

.about-article h2 {
  font-family: Outfit, sans-serif;
  font-size: 1.25rem;
  text-align: left;
  margin: 0 0 12px;
}

.about-block {
  margin: 0 0 8px;
  padding: 0 0 28px;
  border-bottom: 1px solid #f0f0f0;
}

.about-block-last {
  border-bottom: 0;
  padding-bottom: 8px;
}

.about-block p,
.about-steps li,
.about-block details p {
  color: #333;
  margin: 0 0 12px;
}

.about-steps {
  margin: 0 0 16px;
  padding-left: 1.2rem;
}

.about-steps li {
  margin-bottom: 8px;
}

.honest-note {
  background: #f8fafc;
  border-left: 3px solid #0f766e;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
}

.honest-note ul {
  margin: 0;
  padding-left: 1.1rem;
}

.honest-note li {
  margin: 0 0 8px;
  color: #333;
}

.content-page details {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.content-page summary {
  cursor: pointer;
  font-weight: 700;
}

.site-footer {
  margin-top: 48px;
  padding: 24px 16px 32px;
  border-top: 1px solid #f0f0f0;
  text-align: center;
  color: #555;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0 0 12px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.site-footer a {
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
