:root {
  --orange: #FF6600;
  --orange-dark: #D95700;
  --orange-light: #FFF0E6;
  --white: #FFFFFF;
  --bg: #F7F7F7;
  --text: #222222;
  --text-muted: #666666;
  --border: #DDDDDD;
  --success: #16853F;
  --error: #C62828;
  --shadow: 0 10px 30px rgba(34, 34, 34, 0.06);
  --shadow-lg: 0 22px 50px rgba(255, 102, 0, 0.14), 0 8px 20px rgba(34, 34, 34, 0.06);
  --radius: 18px;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Roboto", sans-serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(255, 102, 0, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 10%, rgba(255, 102, 0, 0.1), transparent 50%),
    linear-gradient(180deg, #fff8f2 0%, var(--bg) 42%, var(--bg) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  color: var(--orange-dark);
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.5rem;
}

/* —— Header —— */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(180deg, #ff751a 0%, var(--orange) 100%);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 18px rgba(217, 87, 0, 0.28);
}

.site-logo img {
  display: block;
  width: auto;
  height: 46px;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.08));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0.2rem;
  transition: opacity 0.15s ease;
}

.site-nav a:hover {
  opacity: 0.88;
}

.site-nav a.btn-light {
  color: var(--orange);
  opacity: 1;
  padding: 0.65rem 1.15rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.site-nav a.btn-light:hover {
  background: #fff;
  color: var(--orange-dark);
  opacity: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--orange);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-block {
  width: 100%;
}

/* —— Main / Hero —— */
.main {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 1.25rem;
  flex: 1 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
}

.hero-copy {
  animation: riseIn 0.55s ease both;
}

.hero-brand {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange);
  line-height: 1;
}

.hero-copy h1 {
  margin: 0 0 1rem;
}

.hero-line {
  display: block;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--text);
}

.hero-line-accent {
  color: var(--orange);
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 34ch;
  margin: 0 0 1.15rem;
  line-height: 1.55;
}

.hero-points {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-points li {
  background: var(--white);
  border: 1px solid rgba(255, 102, 0, 0.22);
  color: var(--orange-dark);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.08);
}

.hero-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.hero-plans {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 42ch;
}

.hero-plans li {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-plans strong {
  color: var(--text);
  font-weight: 600;
}

.hero-plans li:last-child strong {
  color: var(--orange-dark);
}

.hero-visual {
  position: relative;
  animation: riseIn 0.65s 0.08s ease both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Transfer card —— */
.transfer-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem 1.2rem 1.3rem;
  border: 1px solid rgba(221, 221, 221, 0.9);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.transfer-card-glow {
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 55%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 102, 0, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.transfer-card > *:not(.transfer-card-glow) {
  position: relative;
  z-index: 1;
}

.transfer-card.dragover {
  outline: 2px dashed var(--orange);
  outline-offset: 3px;
  background: linear-gradient(180deg, #fff5ec, #fff);
  box-shadow: 0 0 0 6px rgba(255, 102, 0, 0.08), var(--shadow-lg);
}

.upload-zone {
  border: 1.5px dashed rgba(255, 102, 0, 0.35);
  border-radius: 14px;
  padding: 0.85rem;
  background: linear-gradient(180deg, #fffaf6 0%, #fff 100%);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.transfer-card.dragover .upload-zone {
  border-color: var(--orange);
  background: var(--orange-light);
}

.upload-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.upload-btn {
  background: var(--orange-light);
  border: none;
  border-radius: 12px;
  padding: 1rem 0.65rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.upload-btn:hover {
  background: #ffe0cc;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255, 102, 0, 0.12);
}

.upload-btn .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff7a26, var(--orange-dark));
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(217, 87, 0, 0.35);
}

.upload-hint {
  margin: 0.65rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.upsell-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin: 0.9rem 0 0.35rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.upsell-row a {
  color: var(--orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.upsell-row .bolt {
  filter: grayscale(0);
}

.file-list {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  max-height: 150px;
  overflow: auto;
}

.file-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  animation: riseIn 0.25s ease both;
}

.file-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--orange-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange-dark);
}

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

.file-meta {
  flex: 1;
  min-width: 0;
}

.file-meta strong {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-meta span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.file-remove {
  border: none;
  background: transparent;
  color: var(--error);
  cursor: pointer;
  font-size: 1.1rem;
}

.form-fields {
  margin-top: 0.35rem;
}

.recipients-block {
  margin-bottom: 0.25rem;
}

.recipients-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.recipients-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.recipients-list {
  display: flex;
  flex-direction: column;
}

.recipient-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.recipient-row .recipient-input {
  flex: 1;
  min-width: 0;
}

.recipient-add,
.recipient-remove {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.recipient-add {
  color: var(--orange);
  border-color: rgba(255, 102, 0, 0.35);
  background: var(--orange-light);
}

.recipient-add:hover:not(:disabled) {
  background: #ffe0cc;
  border-color: var(--orange);
}

.recipient-add:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.recipient-remove {
  color: var(--error);
}

.recipient-remove:hover {
  background: #fdecea;
  border-color: #e8a0a0;
}

.recipients-hint {
  margin: 0.35rem 0 0.15rem;
  font-size: 0.8rem;
}

.field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  transition: border-color 0.15s ease;
}

.field:focus-within {
  border-color: var(--orange);
}

.field input,
.field textarea {
  flex: 1;
  border: none;
  outline: none;
  font: inherit;
  background: transparent;
  color: var(--text);
  resize: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #999;
}

.field .counter {
  color: var(--text-muted);
  font-size: 0.8rem;
  white-space: nowrap;
}

.transfer-footer {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.chip:hover {
  border-color: var(--orange);
  background: var(--orange-light);
}

.chip-caret {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.icon-btn:hover {
  border-color: var(--orange);
  background: var(--orange-light);
}

.transfer-submit {
  margin-top: 0.85rem;
  width: 100%;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7a26 0%, var(--orange) 55%, var(--orange-dark) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  padding: 0.95rem 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.transfer-submit:hover {
  filter: brightness(1.03);
  box-shadow: 0 10px 24px rgba(255, 102, 0, 0.42);
  transform: translateY(-1px);
}

.transfer-submit:active {
  transform: translateY(1px);
}

.transfer-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.progress {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.75rem;
  display: none;
}

.progress.visible {
  display: block;
}

.progress > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--orange), #ff944d);
  transition: width 0.2s ease;
}

.options-panel {
  display: none;
  margin-top: 0.75rem;
  padding: 0.85rem;
  background: var(--orange-light);
  border-radius: 12px;
  border: 1px solid rgba(255, 102, 0, 0.15);
}

.options-panel.open {
  display: block;
  animation: riseIn 0.2s ease both;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.alert-success {
  background: #e8f5e9;
  color: var(--success);
}

.alert-error {
  background: #fdecea;
  color: var(--error);
}

.alert-info {
  background: var(--orange-light);
  color: var(--orange-dark);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  margin: 0 auto;
}

.auth-card h1 {
  font-size: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}

.form-group input:focus,
.form-group select:focus {
  outline: 2px solid var(--orange-light);
  border-color: var(--orange);
}

.plan-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.plan-choice label {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem;
  cursor: pointer;
  display: block;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.plan-choice input {
  margin-right: 0.35rem;
}

.plan-choice label:has(input:checked) {
  border-color: var(--orange);
  background: var(--orange-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, var(--orange-light), var(--white) 40%);
  box-shadow: var(--shadow-lg);
}

.price-card .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
}

.price-card ul {
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.1rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.footer-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  margin-top: 0.35rem;
  font-size: 0.85rem;
}

.footer-copy a {
  color: var(--text);
  font-weight: 600;
}

.footer-copy a:hover {
  color: var(--orange);
}

.footer-heart {
  display: inline-block;
  color: #e53935;
  margin-left: 0.25rem;
  animation: heartbeat 1.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.25); }
  30% { transform: scale(1); }
  45% { transform: scale(1.2); }
  60% { transform: scale(1); }
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.table th,
.table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 0.95rem;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--orange-light);
  color: var(--orange-dark);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text) !important;
  font-weight: 600;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn-google:hover {
  background: #fafafa;
  border-color: #ccc;
  color: var(--text) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-google-icon {
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.legal-page {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem 2rem;
  box-shadow: var(--shadow);
}

.legal-page h2 {
  margin-top: 1.75rem;
  font-size: 1.35rem;
  color: var(--orange-dark);
}

.legal-page h3 {
  margin-top: 1.1rem;
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 600;
}

.legal-page p,
.legal-page li {
  color: var(--text);
  line-height: 1.65;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.legal-updated {
  margin-top: -0.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 0.75rem 0 1rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--white);
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--orange-light);
  color: var(--orange-dark);
  font-weight: 600;
}

@media (max-width: 900px) {
  .legal-page {
    padding: 1.15rem 1rem 1.5rem;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-copy {
    text-align: left;
  }

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

  .site-logo img {
    height: 38px;
  }

  .hero-line {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
}

@media (max-width: 480px) {
  .upload-actions {
    grid-template-columns: 1fr;
  }

  .upsell-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .main {
    padding-top: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-visual,
  .file-list li,
  .options-panel.open,
  .footer-heart {
    animation: none !important;
  }
}
