/* 2Win Trade – Orange/White Theme */
:root {
  --bg: #ffffff;
  --ink: #1a1a1a;
  --muted: #6b7280;
  --brand: #ff6a00;
  --brand-2: #ffa142;
  --line: #eaeaea;
  --card: #fafafa;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

/* Layout */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 300px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-img {
  height: 36px;
  width: auto;
}

.brand-text {
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 6px;
  border-radius: 8px;
  transition: .2s ease;
}

.site-nav a:hover {
  color: var(--brand);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover {
  box-shadow: 0 6px 20px rgba(255, 106, 0, .25);
}

.btn--ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn--ghost:hover {
  background: rgba(255, 106, 0, .06);
}

/* Hero */

/* Hero Section */
.hero {
  padding: 80px 0;
}

.hero--light {
  background: radial-gradient(1200px 400px at 10% -10%, rgba(255,161,66,.18), transparent 60%),
              radial-gradient(700px 280px at 90% 0%, rgba(255,106,0,.12), transparent 60%);
}

.hero-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap-reverse;
}

.hero-copy {
  flex: 1 1 480px;
}

/* Title */
.hero-copy h1 {
  font-size: 40px;
  line-height: 1.3;
  margin: 0 0 20px;
}

/* Subheadline */
.hero-subheadline {
  color: #6b7280;
  font-size: 18px;
  margin: 0 0 28px;
}

/* Bullets */
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.hero-bullets li {
  color: #ff6a00;
  font-weight: 600; 
  font-size: 16px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: #ff6a00;
  color: #fff;
}

.btn--primary:hover {
  box-shadow: 0 6px 20px rgba(255, 106, 0, .25);
}

.btn--ghost {
  background: transparent;
  color: #ff6a00;
  border-color: #ff6a00;
}

.btn--ghost:hover {
  background: rgba(255, 106, 0, .06);
}

/* Image */
.hero-media {
  flex: 1 1 420px;
  text-align: center;
}

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

/* Responsive */
@media (max-width: 920px) {
  .hero-copy h1 {
    font-size: 34px;
  }
}

/* Sections */
.section-head {
  text-align: center;
  margin: 0 auto 100px auto;
  max-width: 760px;
}

.section-head h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-head p {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
}

.benefits .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tile {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.tile-icon {
  margin-bottom: 15px;
}

.tile-icon img {
  width: 48px;
  height: 48px;
}

.tile h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tile p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.products {
  padding: 64px 0;
  background: #fff;
}

.product-groups {
  display: grid;
  gap: 40px;
}

.product-group header h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.product-group header p {
  margin: 0 0 18px;
  color: var(--muted);
}

.grid--cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  transition: .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(255, 106, 0, .08);
}

.card img {
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
}

.card h4 {
  margin: 2px 0 6px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
}

/* How it works */
.how {
  padding: 64px 0;
  background: linear-gradient(#fff, #fff9f3);
}

.steps {
  display: grid;
  gap: 28px;
}

.step {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.step:nth-child(2) {
  border-color: rgba(255, 106, 0, .35);
}

.step img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

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

.step-text p {
  margin: 0 0 8px;
  color: #4b5563;
}

.step-text a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.step-text a:hover {
  text-decoration: underline;
}

/* FAQ */
.faq {
  padding: 64px 0;
  background: #fff;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 12px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #111;
}

.faq p {
  color: #4b5563;
  margin: 8px 0 0;
}

/* Footer */
.site-footer {
  background: #FFCE91;
  color: #cbd5e1;
  padding: 40px 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #000;
  text-decoration: none;
}

.legal-links a:hover {
  color: #000;
}

.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 18px;
  padding-top: 18px;
  color: #000;
}

.footer-bottom {
  margin-top: 10px;
  font-size: 14px;
  color: #000;
}

@media (max-width: 920px) {
  .step {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 {
    font-size: 34px;
  }
}

.products { padding: 64px 0; background: #fff; }

.prod-slider {
  position: relative;
}

.prod-track {
  display: grid;
  grid-auto-flow: column;
  gap: 24px;
  grid-auto-columns: calc(100% - 16px);
  overflow-x: auto;
  padding: 10px 8px 10px 8px;
  scroll-snap-type: x mandatory;
  scroll-padding: 8px;
  scrollbar-width: none;
}
.prod-track::-webkit-scrollbar { display: none; }

@media (min-width: 640px) {
  .prod-track { grid-auto-columns: calc(50% - 16px); }
}
@media (min-width: 1024px) {
  .prod-track { grid-auto-columns: calc(33.333% - 16px); }
}

.prod-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
}

.prod-head {
  padding: 22px;
  border-bottom: 1px dashed var(--line); 
}

.prod-illust {
  margin-top: auto;
  height: 180px;  
  position: relative;
  overflow: hidden;
}

.prod-illust img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; 
  object-position: center;     
}

.prod-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 44px;
  width: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}
.prod-nav:hover { color: var(--brand); }
.prod-nav--prev { left: -6px; }
.prod-nav--next { right: -6px; }

.products .section-head { margin: 0 auto 40px auto; max-width: 880px; }
.products .section-head h2 { font-size: 32px; margin: 0 0 8px; }
.products .section-head p { margin: 0; color: var(--muted); }

